h1 a{
    color:white !important;
}


.navbar{
    border: solid white !important;
   
}
.navbar a{
    color:white !important;
}
.navbar a:hover{
    background-color: rgba(255, 255, 255, 0.435) !important;
}

body{
   
    color: white !important;
    height: 100vh;
    
}

footer a{
    color:black !important;
}


main{
   display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: center;
    margin: 10px;
    margin-top: 30px;
    
    flex-wrap: wrap;
    overflow: auto;
    gap: 30px;
    padding: 20px;
}

.box{
    background-color: rgba(0, 0, 0, 0.742);
    border-radius: 20px;
    padding:20px;
    max-width: 800px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.646);
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    
}
img{
    width: 100%;
    transition: transform 0.3s ease;
}


img:hover{
    transform:scale(1.005);
}
.img-container{
    display: flex;
    flex-direction: column;
    max-width: 300px;
    justify-content: top;
    gap: 10px;
}
@media (max-width:800px){
  
  .img-container{
   
    max-width: 200px;
    
}
  
}

@media (max-width:600px){
    
    .img-container{
     
      max-width: 140px;
      
  }
    
  }