nav {
    background-color: black;
}

.navWrapper {
    background-color: black;
}

h1 {
    color: #FE8714;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(17, 17, 17);
    padding-top: 80px
}

.row {
    width: 80vw;
    max-height: 80vh;
    display: flex;
    margin: 10px 0;
}

.row-1 .item {
    flex: 1;
}

.row-2 .item {
    flex: 1;
}

.row-3 .item {
    flex: 1;
}

.item {
    margin: 10px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 8px;
}

img {
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out;
}

img:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.toTop {
    display: grid;
    place-items: center;
    padding-top: 42px;
    padding-bottom: 42px;
    background-color: rgb(17, 17, 17);
}

.toTop button {
    width: fit-content;

    background: none;
    border: 2px solid #FE8714;
    color: #FE8714;
    font-size: 1em;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.toTop button:hover {
    background-color: #FE8714;
    color: white;
    transform: scale(1.1);
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-image {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.close-modal:hover {
    color: #FE8714;
}

footer {
    background-color: black !important;
}