body {
    padding: 0px;
    margin: 0;
    font-family: "Roboto", sans-serif;
}
.header {
    display: flex;
    justify-content: space-between;
    background-color: #1f2937;
    padding: 0 30px 30px 30px; 
     align-items: center;
}



.logo img {
width: auto;
max-width: 60px;
height: auto;
}

.logo img:hover {
     transform: translateY(-5px); 
     transition: transform 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
              transform: translateY(-5px); 
    filter: drop-shadow(0 0 15px #1990f1);
}

.links ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
   
    
}
.links ul a {
    text-decoration: none;
    font-size: 20px;
    color: aliceblue;
    padding: 12px;
    
    
}

.links ul li {
    display: flex;
    
    padding: 20px;
   
}

.links a:hover {
  
    color: #3882f6;
    border-radius: 190px;
    background-color: #2c3d54;
     transition: transform 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
              transform: translateY(-5px); 
  
}

.container {
     background-color: #1f2937;
     padding: 40px 40px; 
    
}


.body {
    display: flex;
    flex-direction: row;
    padding-top: 50px;
    color: white;
    padding-bottom: 50px;
    align-items: center;
}

.body img {
    width: auto;
    max-width: 700px;
    height: auto;
    border-radius: 25px;
    border:2px #ffffff solid;
}

.body img:hover {
     transform: translateY(-5px); 
     transition: transform 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
              transform: translateY(-5px); 
    filter: drop-shadow(0 0 15px #1990f1);

}

.body button{
    padding: 15px;
    color: white;
    background-color: #3882f6;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border-style: none;
}

.body button:hover {
    background-color: #ffffff;
    color: #0e68f8;
    border-color: #0e68f8;
}

/* .gallery Starts from here */

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
}
.photos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;              
    max-width: 1200px; 
    padding: 10px;
}

.photos .img {
    flex: 1 1 100px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    

}

.img img {
    width: 100%;            
    height: auto;           
    border-radius: 8px;
    border:2px #000000 solid;


}

.img img:hover {
     transform: translateY(-5px); 
     transition: transform 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
              transform: translateY(-5px); 
    filter: drop-shadow(0 0 15px #a7d4f5);

}


.img p {
   text-align: center;
}

/* .section */

.section {
    background-color: #e5e7eb;
    font-size: 26px;
    padding: 30px 50px;
    margin: 0;
    border-radius: 25px;
}
.section p {
    padding: 0px 100px;
}

.at {
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.buttom {
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3882f6;
    margin: 80px;
    border-radius: 25px;
    
    

}

.follow, .button {
    background-color: #3882f6;
    padding: 20px;
    color: white;
    
    
}
.button button {
    padding: 15px;
    border-radius: 25px;
    border: 3px solid white;
    background-color: #3882f6;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;

}

.button button:hover {
    background-color: #ffffff;
    color: #3882f6;
    border-color: #5a99ff;;
}
.footer {
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 20px;
    background-color: #1f2937;

}