* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #FED103;
    --black: #222222;
    --white: #f5f5f5;
  }

a {
    text-decoration: none;
}

html {
    overflow-x: hidden;
}
  

body {
    font-family: 'Noto Sans Display', sans-serif;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background-color: var(--yellow);
}

.navbar-logo {
    height: 100%;
}

.back-arrow {
    position: absolute;
    margin-left: 30px;
    margin-top: 20px;
    color: var(--black);
    font-size: 50px;
}

.back-arrow:hover {
    transform: scale(1.2, 1.2);
}

.navbar-logo img {
    height: 100%;
    padding: 10px;
}

.gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery, .category {
    margin-bottom: 10px;
}

.gallery-container {
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.gallery-category {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 2px;
}

.gallery-category:hover {
    border: 3px solid var(--black);
}


.gallery-category img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}


.gallery-category-header h2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    letter-spacing: 1px;
    color: var(--black);
    background-color: var(--yellow);
}

.category-container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.category-header h2 {
    font-size: 3rem;
    font-weight: 400;
    padding: 10px 0px;
    border-bottom: 5px solid red;
}



.category-image img {
    object-fit: cover;
}

.footer {
    width: 100%;
    height: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    background-color: var(--black);
    padding-bottom: 20px;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-info a, .footer-socials a{
    color: var(--white);
    padding: 30px;
}

.footer-info a i, .footer-socials a i {
    color: var(--yellow);
    padding-right: 10px;
    font-size: 20px;
}

.footer-socials {
    display: flex;
    justify-content: center;
}

.footer-socials a i {
    font-size: 40px;
}


@media only screen and (max-width: 650px) {
    .back-arrow {
        margin-top: 30px;
        font-size: 30px;
    }

    .gallery-container {
        width: 100vw;
        flex-direction: column;
        flex-wrap: nowrap;
    }
  

    .gallery-category {
        width: 90vw;
        flex-wrap: nowrap;
    }

    .category-header h2 {
        font-size: 1.5rem;

    }

    .gallery-category img {
        position: relative;
        width: 100%;
    }

    .footer-container {
        justify-content: center;
    }

    .emails {
        display: flex;
        flex-direction: column;
    }

    .footer-info a{
        font-size: 12px;
    }
    


}