@font-face {
  font-family: 'MouldyCheese';
  src: url('../../assets/font1.ttf') format('truetype');
  font-style:normal;
  font-weight: 900;
}


.row_flex_container {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.logo_image {
  width: clamp(80px, 15vw, 200px);
  height: auto;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.logo_image:hover {
  filter: drop-shadow(0 0 10px rgba(152, 182, 247, 0.5))
          drop-shadow(0 0 15px rgba(70, 129, 255, 0.5));
}


.top_buttons_div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.top_buttons_div img {
  height: auto; 
  width: clamp(80px, 15vw, 200px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}



body {
  background-image: url("../../assets/main_page_assets/wallpaper2.svg"),
                    linear-gradient(rgb(27, 172, 240), rgb(27, 172, 240), #ffffff, rgb(7, 25, 117), rgb(17, 4, 100));
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-blend-mode: normal;
  background-position: center;
  
  box-sizing:content-box ;
  height: 100vh;
  padding-bottom: 2rem;
  margin: 0;
  overflow:auto;
}


.bodybg {
  position: relative;
  background-color: rgba(160, 255, 223, 0.473);
  border-radius: 20px;
  padding: 4vh 3vw; 
  margin: 0;
  box-sizing: border-box;
  overflow: visible;
}




.flex-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
}


.top_buttons {

  background-image: url("../../assets/main_page_assets/buttom_monochrome.svg");
  background-repeat: no-repeat;
  background-size:contain;
  background-position: center; 
  background-color: transparent;
  border: none;
  color: rgb(33, 5, 59);
  text-decoration: none;
  
  display: block;
  align-items: center;

  width: clamp(8rem, 1.5rem, 8rem);
  height: 7.8rem;  
  font-size: clamp(1.2rem, 0.5rem, 1.5rem);
  font-weight: bold;
  cursor: pointer;
  filter: drop-shadow(5px 0px 2px rgba(20, 7, 192, 0.24));
  font-family: 'MouldyCheese', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
}

.top_buttons:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}




.top_buttons.green {
  filter: sepia(1) saturate(500%) brightness(76%) contrast(150%) hue-rotate(90deg);
}

.top_buttons.yellow {
  filter: sepia(1) saturate(300%) hue-rotate(25deg);
}

.top_buttons.blue {
  filter: sepia(1) saturate(500%) brightness(75%) contrast(150%) hue-rotate(165deg);
}



.top_buttons_container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  justify-self: end;
  overflow: hidden;
  height: 5rem;
}



 .characters_picnic {
    background-image: url("../../assets/main_page_assets/foveo.png");
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-size: 800px 600px;
 }



.main_colored_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  
  background-image:linear-gradient(rgba(70, 129, 255, 0.603), rgba(184, 5, 184, 0.577));
  background-blend-mode:darken;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}


@media (max-width: 720px) {
.row_flex_container {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-end; 
  justify-content: space-between; 
  gap: 1rem;
}




  .main_container {
    flex-direction: column;
    align-items: center;
  }

}