body {
    place-content: start;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 80px;
}

#tabs {
    place-content: start;
    padding: 20px;
    width: 100%;
    gap: 40px;
    border-bottom: 3px solid var(--accent);
    position: sticky;
    top: 0;
    background-color: black;
    z-index: 10000;
}

#tabs a {
    font-size: 1.25em;
}

#tabs .row {
    gap: 40px;
}

#back {
    margin-left: auto;
    width: auto;
}

.home {
    font-family: "EB Garamond";
    font-size: 2em !important;
}

.imagebg {
    min-height: calc(100% - 84px);
    position: relative;
    place-self: start;
    place-content: center;
    place-items: center;
    width: 100%;
}

.imagebg .image {
    position: absolute;
    place-self: start;
    top: 12px;
    width: 100%;
    filter: blur(8px) brightness(0.5);
    height: calc(100% - 12px);
    object-fit: cover;
    z-index: -10;
}

h1 {
    margin: 0
}

h2 {
    font-size: 1.5em;
    padding: 5px
}

h2.head {
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 2em;
    border-bottom: 3px solid var(--accent);
}

form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px
}

form p {
    width: 100%;
}


.borderbottom {
    border-bottom: 3px solid var(--accent);
}

.row {
    width: fit-content
}

.row>hr {
    height: 100%;
    width: 0;
}

table {
    max-width: 75%;
}

th,
td {
    padding: 10px
}

th {
    text-align: left;
    border-bottom: 3px solid var(--accent);
}

p {
    width: 75%;
    font-size: 1.1em;
}

label {
    background-color: transparent;
    cursor: default;
    padding: 0;
}

label:hover {
    background-color: transparent !important;
    cursor: default;
}


.gallery {
    width: 75%;
    text-align: center;
    gap: 150px;
}

.gallery img {
    width: 75%;
    object-fit: contain;
}

.gallery img:hover {
    scale: 1.05
}

.gallery>.col {
    place-items: center;
    gap: 40px
}

@media (max-width: 600px) {
    .gallery {
        width: 100%;
        flex-wrap: wrap;
        gap: 50px
    }

    form {
        width: 90%;
    }

    .gallery img,
    p {
        width: 70%;
    }

    table {
        max-width: 90%;
    }

    .imagebg .image {
        height: 100% !important;
        width: 100% !important;

    }

    h3 {
        font-size: 1.5em;
    }

    h1 {
        text-align: center;
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.25em;
        text-align: center;
        text-wrap: wrap !important;
        max-width: 90%;
    }

    #tabs {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.8em;
        place-content: center;
    }

    .home {
        width: 100%;
        text-align: center;
        font-size: 4em !important;
    }

    #tabs>.row {
        gap: 20px;
    }
}