html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: unset;
    text-decoration: unset;
}

* {
    box-sizing: border-box;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.logo {
    display: block;
    max-width: 100%;
}

.separator {
    height: 25px;
}

.gallery {
    display: flex;
    justify-content: center;
    width: 60%;
}

.gallery > .imagecontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 70vh;
}

.gallery > .imagecontainer > .image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.gallery > .control {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    font-size: 48px;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
}

.gallery > .control:hover {
    background-color: rgb(240, 240, 240);
}

@media screen and (max-width: 600px) {
    .gallery {
        width: 98%;
    }
    .gallery > .control {
        font-size: 32px;
    }
}

.story {
    width: 100%;
    background-color: rgb(48, 32, 32);
    color: white;
    text-align: center;
}

.story > .title {
    font-size: 32px;
    font-weight: bold;
    padding: 50px 0px;
}

.story > .body {
    font-size: 20px;
    padding-bottom: 50px;
    width: 60%;
    margin: auto;
    line-height: 40px;
}

@media screen and (max-width: 600px) {
    .story > .title {
        font-size: 28px;
    }
    .story > .body {
        font-size: 18px;
        width: 90%;
        line-height: 36px;
    }
}

.contact {
    font-size: 24px;
    width: 100%;
}

.contact > .row {
    width: 40%;
    margin: 25px auto;
}

.contact a {
    padding: 5px;
    border-radius: 3px;
}

.contact a:hover {
    background-color: rgb(240, 240, 240);
}

@media screen and (max-width: 1400px) {
    .contact > .row {
        width: 50%;
    }
}
@media screen and (max-width: 1200px) {
    .contact {
        font-size: 22px;
    }
    .contact > .row {
        width: 60%;
    }
}
@media screen and (max-width: 1000px) {
    .contact > .row {
        width: 70%;
    }
}
@media screen and (max-width: 800px) {
    .contact > .row {
        width: 80%;
    }
}
@media screen and (max-width: 600px) {
    .contact {
        font-size: 20px;
    }
    .contact > .row {
        width: 95%;
    }
}

.footer {
    color: lightgray;
    margin-top: 50px;
    margin-bottom: 25px;
}
