h1 {
  width: 100%;
  position: sticky;
  top: 52px;
  font-size: 2rem;
  text-align: left;
  color: #00a2ff;
  padding: 8px 16px;
  margin: 20px;
  margin-left: 0;
  background-color: #042024;
  border-left: 6px solid #002fff;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 -50px 0 #181818;
  font-family: "Acme", serif;
  letter-spacing: 1px;
  z-index: 10;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0px;
  background-color: #181818;
  margin-top: 50px;
}


.filter {
  display: flex;
  flex-direction: column;
  width: 140px;
  height: 250px; 
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin-bottom: 30px;
  border: 5px solid #0093f5;
  border-radius: 10px;
  background-color: #1b1e22;
}


.filter h3 {
  position: absolute;
  top: -40px; 
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #00d8f5;
  background-color: #252525;
  padding: 10px 10px;
  color: #fff;
  display: flex;
  justify-content: center; 
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
}


.filter .button-container {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  transform: translateX(0px);
  justify-content: flex-start;
  overflow-y: auto;  
  overflow-x: hidden;
  flex-grow: 1;
  margin-top: 15px;
}


.filter button {
  background: #333;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  font-family: "Fugaz One", sans-serif;
  font-size: 20px;
  transition: all 0.3s ease;
  transform: translateX(10px);
  opacity: hidden;
  text-overflow: hidden;
  box-sizing: border-box;
  display: inline-flex; 
  justify-content: start; 
  align-items: center; 
  text-align: center; 
}

.filter button:hover {
  background-color: #3498db; 
  transform: scale(1.18), translateX(10px);
  transform: translateX(10px);

}


.filter .active-filter {
  background: #00bcd4;
  color: #000;
  border: 1px solid #00bcd4;
}



#gameCardTemplate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px auto;
  gap: 20px;
  padding: 20px 0;
  border: 1px solid #333;
  border-radius: 12px;
  background-color: #1f1f1f;
}


.game_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

#popup-message {
  position: fixed;
  font-size: 160px;
  bottom: 200px;
  right: 200px;
  background: #0066ff;
  color: #0051ff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgb(0, 89, 255);
  z-index: 16;
  display: none;
  pointer-events: none;
  animation: fadeInout 3s forwards;
}

.custom-toast {
  position: fixed;
  bottom: 30px;
  right: 0px;
  background: #4CAF50 !important;
  color: white !important;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 18;
  pointer-events: none;
  animation: fadeInOut 3s ease-in-out;
  font-family: "Alkatra", system-ui ;
  font-family: "Acme", sans-serif ;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

/* ===== FILTER BUTTONS STYLING ===== */
#letter-filter {
  color: #640000;
  /* font-size: 20px; */
  
}

#letter-filter button {
  margin: 1px;
  padding: 13px 10px;
  width: 20px;
  height: 20px;
  justify-content: center; 
}

#tag-filter button {
  width: 100px;
  height: 20px;
  font-size: 15px;
  white-space: nowrap !important;
  transform: translateX(0px);
  bottom: 0px;
  position: relative;
  padding: 15px 12px;
  margin: 5px;
}

#series-filter button {
  width: 100px;
  height: 20px;
  font-size: 16px;
  white-space: nowrap !important;
  bottom: 0px;
  position: relative;
  padding: 15px 12px;
  margin: 5px;
}


#publisher-filter button {
  width: 120px;
  min-height: 20px;
  font-size: 15px;
  white-space: wrap !important;
  bottom: 0px;
  transform: translateX(-5px);
  position: relative;
  padding: 3px 5px;
  margin: 5px;
}

#year-filter button {
  white-space: nowrap !important;
  justify-content: center; 
  width: 40px;
  min-height: 20px;
  font-size: 15px;
  transform: translateX(5px);
  bottom: 0px;
  position: relative;
  padding: 3px 5px;
  margin: 5px;
}

#size-filter button {
  white-space: nowrap !important;
  width: 100px;
  min-height: 20px;
  font-size: 15px;
  transform: translateX(5px);
  bottom: 0px;
  position: relative;
  padding: 3px 5px;
  margin: 5px;
}

#reset-filters {
  width: 100%;
  background: #181818;
  border: 3px solid #333;
  padding: 2px 20px;
  border-radius: 10px;
  font-size: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 0px 15px;
  cursor: pointer;
  color: #fffcfc;
  font-family: "Acme", serif !important;
  display: block;
}

#reset-filters:hover {
  background: #c62828;
}

@media screen and (max-width: 350px) {
  h1 {
  letter-spacing: 1px;
  top: 40px;
  font-size: 2rem;
  padding: 8px 1px;
 }     
}

@media screen and (max-width: 309px) {
  h1 {
    letter-spacing: 1px;
    top: 40px;
    font-size: 1.5rem;
    padding: 8px 1px;
    box-shadow: 0px -40px 0 #181818;
   }
   .filter {
    width: 240px;
    height: 160px; 
   } 
   #series-filter button {
    width: 90px;
    height: 20px;
    font-size: 13px;
    white-space: nowrap !important;
    bottom: 0px;
    position: relative;
    padding: 15px 12px;
    margin: 2px;
  }

  #publisher-filter button {
    width: 100px;
    min-height: 20px;
    font-size: 15px;
    white-space: wrap !important;
    bottom: 0px;
    transform: translateX(-5px);
    position: relative;
    padding: 3px 5px;
    margin: 5px;
  }
  
  #size-filter button {
    white-space: nowrap !important;
    width: 80px;
    min-height: 20px;
    font-size: 15px;
    transform: translateX(5px);
    bottom: 0px;
    position: relative;
    padding: 3px 5px;
    margin: 5px;
  }

  #reset-filters {
    padding: 2px 20px;
    font-size: 30px;
    margin: 0px 15px;
  }
  .custom-toast {
    font-size: 16px;
    bottom: 90px;
    right: 20px;
  }
} 

@media screen and (min-width: 410px) {

  .filter {
   width: 180px;
   height: 180px; 
   } 

  #series-filter button {
    width: 130px;
    height: 20px;
    font-size: 20px;
    white-space: nowrap !important;
    bottom: 0px;
    position: relative;
    padding: 15px 12px;
    margin: 2px;
  }

  #tag-filter button {
    width: 150px;
    height: 20px;
    font-size: 20px;
    white-space: nowrap !important;
    transform: translateX(0px);
    bottom: 0px;
    position: relative;
    padding: 15px 12px;
    margin: 3px;
  }

  #publisher-filter button {
    width: 150px;
    height: 20px;
    font-size: 20px;
    white-space: nowrap !important;
    bottom: 0px;
    transform: translateX(-5px);
    position: relative;
    padding: 15px 5px;
    margin: 5px;
  }
  
  #size-filter button {
    white-space: nowrap !important;
    width: 120px;
    min-height: 20px;
    font-size: 15px;
    transform: translateX(5px);
    bottom: 0px;
    position: relative;
    padding: 3px 5px;
    margin: 5px;
  }

  #reset-filters {
    padding: 2px 20px;
    font-size: 40px;
    margin: 0px 15px;
  }
  .custom-toast {
    font-size: 22px;
    bottom: 120px;
    right: 20px;
  }
} 

  
  @media screen and (min-width: 455px){
  h1 {
  letter-spacing: 2px;
  top: 50px;
  font-size: 2.5rem;
  padding: 5px 15px;
 }   
}
              
@media screen and (min-width: 540px) {

  .filter {
   width: 47vw;
   height: 190px; 
  } 

  #letter-filter button {
    margin: 3px;
    padding: 13px 10px;
    width: 30px;
    height: 35px;
    font-size: 25px;
    justify-content: center; 
  }

  #series-filter button {
    width: 110px;
    min-height: 30px;
    font-size: 18px;
    white-space: nowrap !important;
    bottom: 0px;
    position: relative;
    padding: 15px 12px;
    margin: 2px;
  }

  #year-filter button {
    white-space: nowrap !important;
    justify-content: center; 
    width: 50px;
    min-height: 20px;
    font-size: 18px;
    transform: translateX(5px);
    bottom: 0px;
    position: relative;
    padding: 3px 5px;
    margin: 5px;
  }

  #tag-filter button {
    width: 110px;
    height: 20px;
    font-size: 17px;
    white-space: nowrap !important;
    transform: translateX(0px);
    bottom: 0px;
    position: relative;
    padding: 15px 12px;
    margin: 3px;
  }

  #publisher-filter button {
    width: 150px;
    height: 20px;
    font-size: 20px;
    white-space: nowrap !important;
    bottom: 0px;
    transform: translateX(-5px);
    position: relative;
    padding: 15px 5px;
    margin: 5px;
  }
  
  #size-filter button {
    white-space: nowrap !important;
    width: 100px;
    min-height: 20px;
    font-size: 16px;
    transform: translateX(5px);
    bottom: 0px;
    position: relative;
    padding: 3px 5px;
    margin: 5px;
  }

  #reset-filters {
    padding: 2px 20px;
    font-size: 50px;
    margin: 0px 15px;
  }

  .filter h3 {
    top: -40px; 
    padding: 6px 8px;
    font-size: 22px;
  }

} 


@media screen and (min-width: 680px){
   h1 {
  letter-spacing: 2px;
  top: 50px;
  font-size: 3rem;
  padding: 5px 15px;
 }   
 
 #tag-filter button {
  width: 145px;
  height: 20px;
  font-size: 22px;
  white-space: nowrap !important;
  transform: translateX(0px);
  bottom: 0px;
  position: relative;
  padding: 15px 12px;
  margin: 3px;
}  
#series-filter button {
  width: 135px;
  min-height: 35px;
  font-size: 22px;
  white-space: nowrap !important;
  bottom: 0px;
  position: relative;
  padding: 15px 12px;
  margin: 2px;
}
#size-filter button {
  white-space: nowrap !important;
  width: 130px;
  min-height: 20px;
  font-size: 21px;
  transform: translateX(5px);
  bottom: 0px;
  position: relative;
  padding: 3px 5px;
  margin: 5px;
}
.filter h3 {
  top: -45px; 
  padding: 6px 8px;
  font-size: 26px;
}
.custom-toast {
  font-size: 28px;
  bottom: 180px;
  right: 20px;
}
}


@media screen and (min-width: 801px){
  h1 {
  letter-spacing: 2px;
  top: 70px;
  font-size: 4rem;
  padding: 0px 1px;
 } 
 .filter {
  width: 31vw;
  height: 200px; 
 } 

 #letter-filter button {
   margin: 3px;
   padding: 13px 10px;
   width: 30px;
   height: 35px;
   font-size: 25px;
   justify-content: center; 
 }

 #series-filter button {
   width: 110px;
   min-height: 30px;
   font-size: 18px;
   white-space: nowrap !important;
   bottom: 0px;
   position: relative;
   padding: 15px 12px;
   margin: 2px;
 }

 #year-filter button {
   white-space: nowrap !important;
   justify-content: center; 
   width: 50px;
   min-height: 20px;
   font-size: 18px;
   transform: translateX(5px);
   bottom: 0px;
   position: relative;
   padding: 3px 5px;
   margin: 5px;
 }

 #tag-filter button {
   width: 110px;
   height: 20px;
   font-size: 17px;
   white-space: nowrap !important;
   transform: translateX(0px);
   bottom: 0px;
   position: relative;
   padding: 15px 12px;
   margin: 3px;
 }

 #publisher-filter button {
   width: 150px;
   height: 20px;
   font-size: 20px;
   white-space: nowrap !important;
   bottom: 0px;
   transform: translateX(-5px);
   position: relative;
   padding: 15px 5px;
   margin: 5px;
 }
 
 #size-filter button {
   white-space: nowrap !important;
   width: 90px;
   min-height: 20px;
   font-size: 15px;
   transform: translateX(5px);
   bottom: 0px;
   position: relative;
   padding: 3px 5px;
   margin: 5px;
 }

 #reset-filters {
   padding: 2px 20px;
   font-size: 50px;
   margin: 0px 15px;
 }

 .filter h3 {
   top: -40px; 
   padding: 6px 8px;
   font-size: 22px;
 }

}


@media screen and (min-width: 1101px){
  h1 {
    letter-spacing: 5px;
    top: 6vw;
    font-size: 3vw;
    padding: 0.8vw 3vw;
   }

   .filter {
    width: 31vw;
    height: 200px; 
   } 
  
   #letter-filter button {
     margin: 4px;
     padding: 13px 10px;
     width: 35px;
     height: 35px;
     font-size: 28px;
     justify-content: center; 
   }
  
   #series-filter button {
    margin: 4px;
     width: 150px;
     height: 40px;
     font-size: 22px;
     white-space: nowrap !important;
     bottom: 0px;
     position: relative;
     padding: 15px 12px;
     margin: 2px;
   }
  
   #year-filter button {
     white-space: nowrap !important;
     justify-content: center; 
     width: 70px;
     height: 40px;
     font-size: 21px;
     transform: translateX(5px);
     bottom: 0px;
     position: relative;
     padding: 3px 5px;
     margin: 5px;
   }
  
   #tag-filter button {
    margin: 4px;
     width: 150px;
     height: 40px;
     font-size: 22px;
     white-space: nowrap !important;
     transform: translateX(0px);
     bottom: 0px;
     position: relative;
     padding: 15px 12px;
     margin: 3px;
   }
  
   #publisher-filter button {
     width: 150px;
     height: 40px;
     font-size: 22px;
     white-space: nowrap !important;
     bottom: 0px;
     transform: translateX(-5px);
     position: relative;
     padding: 15px 5px;
     margin: 5px;
   }
   
   #size-filter button {
     white-space: nowrap !important;
     width: 110px;
     min-height: 20px;
     font-size: 18px;
     transform: translateX(5px);
     bottom: 0px;
     position: relative;
     padding: 3px 5px;
     margin: 5px;
   }
  
   #reset-filters {
     padding: 2px 20px;
     font-size: 60px;
     margin: 0px 15px;
   }
  
   .filter h3 {
     top: -45px; 
     padding: 6px 8px;
     font-size: 30px;
   }
   .custom-toast {
    font-size: 3.5vw;
    bottom: 10vw;
    right: 2vw;
  }
}

@media screen and (min-width: 1400px){
.filter {
  width: 15vw;
  height: 20vw; 
 } 

 #letter-filter button {
   margin: 4px;
   padding: 13px 10px;
   width: 35px;
   height: 35px;
   font-size: 28px;
   justify-content: center; 
 }

 #series-filter button {
  margin: 4px;
   width: 150px;
   height: 40px;
   font-size: 22px;
   white-space: nowrap !important;
   bottom: 0px;
   position: relative;
   padding: 15px 12px;
   margin: 2px;
 }

 #year-filter button {
   white-space: nowrap !important;
   justify-content: center; 
   width: 70px;
   height: 40px;
   font-size: 21px;
   transform: translateX(5px);
   bottom: 0px;
   position: relative;
   padding: 3px 5px;
   margin: 5px;
 }

 #tag-filter button {
  margin: 4px;
   width: 150px;
   height: 40px;
   font-size: 22px;
   white-space: nowrap !important;
   transform: translateX(0px);
   bottom: 0px;
   position: relative;
   padding: 15px 12px;
   margin: 3px;
 }

 #publisher-filter button {
   width: 150px;
   height: 40px;
   font-size: 22px;
   white-space: nowrap !important;
   bottom: 0px;
   transform: translateX(-5px);
   position: relative;
   padding: 15px 5px;
   margin: 5px;
 }
 
 #size-filter button {
   white-space: nowrap !important;
   width: 110px;
   min-height: 20px;
   font-size: 18px;
   transform: translateX(5px);
   bottom: 0px;
   position: relative;
   padding: 3px 5px;
   margin: 5px;
 }

 #reset-filters {
   padding: 2px 20px;
   font-size: 60px;
   margin: 0px 15px;
 }

 .filter h3 {
   top: -3vw; 
   padding: 8px 2px;
   font-size: 1.5vw;
 }
 .custom-toast {
  font-size: 3vw;

}
}

@media screen and (min-width: 1600px){

  .filter-container {
    gap: 1vw;
    margin-top: 3vw;
  }

  .filter {
    width: 15vw;
    height: 20vw; 
   } 

   .filter .button-container {
    margin-top: 1.6vw;
  }

  #letter-filter button {
    margin: 0.3vw;
    padding: 1vw 0.8vw;
    width: 1.5vw;
    height: 1.5vw;
    font-size: 1.5vw;
    justify-content: center; 
  }
 
  #series-filter button {
   margin: 4px;
    width: 12vw;
    height: 2.5vw;
    font-size: 1.6vw;
    white-space: nowrap !important;
    bottom: 0px;
    position: relative;
    padding: 15px 12px;
    margin: 0.15vw;
  }
 
  #year-filter button {
    white-space: nowrap !important;
    justify-content: center; 
    width: 3vw;
    height: 2.5vw;
    font-size: 1vw;
    transform: translateX(5px);
    bottom: 0px;
    position: relative;
    padding: 3px 5px;
    margin: 0.3vw 0.2vw;
  }
 
  #tag-filter button {
   margin: 4px;
    width: 13vw;
    height: 2.5vw;
    font-size: 1.6vw;
    white-space: nowrap !important;
    transform: translateX(0px);
    bottom: 0px;
    position: relative;
    padding: 1vw 1vw;
    margin: 0.3vw;
  }
 
  #publisher-filter button {
    width: 13vw;
    height: 2.5vw;
    font-size: 1.5vw;
    white-space: nowrap !important;
    bottom: 0px;
    transform: translateX(-5px);
    position: relative;
    padding: 1vw 0.5vw;
    margin: 0.2vw 0.5vw;
  }
  
  #size-filter button {
    white-space: nowrap !important;
    width: 6vw;
    height: 2vw;
    font-size: 1vw;
    transform: translateX(5px);
    bottom: 0px;
    position: relative;
    padding: 3px 5px;
    margin: 5px;
  }
 
  .filter h3 {
    top: -2vw; 
    padding: 0.5vw 0.5vw;
    font-size: 1.5vw;
    border-radius: 0.5vw;
  }
  
  #reset-filters {
    padding: 2px 20px;
    font-size: 3vw;
    margin: 0px 15vw;
    border-radius: 1vw;
  }
  .custom-toast {
    font-size: 3vw;
    bottom: 10vw;
    right: 2vw;
  }
} 

@media screen and (min-width: 2300px){
  h1 {
      letter-spacing: 0.5vw;
      top: 5vw;
      font-size: 4vw;
      padding: 0.2vw 3vw;
     }

     #letter-filter button {
      margin: 0.3vw;
      padding: 1vw 1vw;
      width: 1.5vw;
      height: 1.5vw;
      font-size: 1.5vw;
      justify-content: center; 
    }
    .custom-toast {
      font-size: 2.5vw;
      bottom: 7vw;
      right: 2vw;
    }
} 

@media (min-width: 9000px) and (max-height: 7000px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 9.9vw !important;
 }
 .tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 21vw;
 }
}
@media (min-width: 8000px) and (max-height: 6000px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 8.4vw !important;
 }
 .tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 21vw;
 }
}
@media (min-width: 7500px) and (max-height: 5500px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 7.5vw !important;
 }
 .tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 21vw;
 }
}
@media (min-width: 6500px) and (max-height: 5000px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 9vw !important;
 }
 .tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 21vw;
 }
}
@media (min-width: 5000px) and (max-height: 4500px) {
 #gameCardTemplate {
  justify-content: start;
 }
  .footer {
  padding-bottom: 15vw !important;
 }
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 20vw;
}
}
@media (min-width: 3800px) and (max-height: 3000px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 10.2vw !important;
 }
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 23vw;
}
}
@media (min-width: 3300px) and (max-height: 2800px) {
 #gameCardTemplate {
  justify-content: start;
 }
.footer {
  padding-bottom: 12.4vw !important;
 }
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 25vw;
  --scroll-offset: 23vw;
}
}
@media (min-width: 2800px) and (max-height: 2500px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 13.6vw !important;
 }
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 30vw;
  --scroll-offset: 23vw;
}
}
@media (min-width: 2300px) and (max-height: 2100px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 13.2vw !important;
 }
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 30vw;
  --scroll-offset: 23vw;
}
}
@media (min-width: 2000px) and (max-height: 1800px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 13vw !important;
 }
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 30vw;
  --scroll-offset: 23vw;
}
}
@media (min-width: 1600px) and (max-height: 1400px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 7vw !important;
}
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 30vw;
  --scroll-offset: 23vw;
}

}
@media (min-width: 1500px) and (max-height: 1400px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 30vw;
  --scroll-offset: 23vw;
}
.footer {
  padding-bottom: 9vw !important;
}
}
@media (min-width: 1024px) and (max-height: 1100px) {
 #gameCardTemplate {
  justify-content: start;
 }
 .footer {
  padding-bottom: 7vw !important;
}
.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 40vw;
  --scroll-offset: 47vw;
}

} 
@media (min-width: 1400px) and (max-height: 1100px) {
 #gameCardTemplate {
  justify-content: start;
 }

.tool_nav {
  --scroll-start: 0vw;
  --scroll-end: 30vw;
  --scroll-offset: 23vw;
}
.about-box {
  margin-top: 3.5vw;
}
.social_links {
  width: 85% !important;
  gap: 2vw !important;
  padding-top: 3vw !important;
  padding-bottom: 2.5vw !important;
  margin: 0px !important;
}

.social_item {
  width: 14vw !important;
  height: 8vw !important;
}
.social_item:hover {
  width: 22vw !important;
}
.social_icon img {
  width: 6vw !important;
}
.contact_me {
  font-size: 3vw !important;
}

} 


