@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.Gallery-logo img {
    height: 120px;
    width: 160px;
}

.title-gallery {
    color: rgb(255, 255, 255);
}

.image-grid {
    padding: 40px;
    border: 2px solid rgb(255, 253, 253);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background-color: rgb(82, 82, 82);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.image-grid img {
     width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-gallery {
    display: flex;
    justify-content: center; 
    gap: 10px;
    background: transparent;
    padding: 20px;  
} 

.button-gallery button {
    background: transparent; 
    border: 2px solid rgba(65, 99, 1, 0.8); 
    color: rgba(255, 255, 255, 0.8); 
    padding: 12px 30px; 
    font-size: 18px; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: all 0.3s ease;
    border-radius: 8px; 
}

.button-gallery button:hover {
    background: rgba(65, 99, 1, 0.8); 
    color: rgb(255, 0, 0); 
    transform: scale(1.1);  
} 

a:visited {
    text-decoration: none;
    color: inherit;
}

body {
  background-color: rgb(0, 0, 0);
}


.footer-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
} 

.footer-text {
    display: flex;
    justify-content: center; 
    gap: 10px;
    background: transparent;
    padding: 20px;  
} 

.footer-text button {
    background: transparent; 
    border: 2px solid rgba(65, 99, 1, 0.8); 
    color: rgba(255, 255, 255, 0.8); 
    padding: 12px 30px; 
    font-size: 18px; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: all 0.3s ease;
    border-radius: 8px; 
}

.footer-text button:hover {
    background: rgba(65, 99, 1, 0.8); 
    color: rgb(255, 0, 0); 
    transform: scale(1.1); 
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
        margin: 10px;
        padding: 10px;
    }

    .Gallery-logo img {
        width: 100px;
        height: auto;
    }

    .button-gallery {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .button-gallery {
        flex-direction: column;
        align-items: center;
    }

    .button-gallery button {
        width: 80%;
        font-size: 14px;
    }

    .footer-text {
        font-size: 14px;
    }
}