@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Tangerine:wght@400;700&display=swap');

* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: "Playfair";
    background-color: #f8f6f1;
}

::selection {
    background-color: #b1b0ac;
}

.increase-size-on-hover {
    transition: transform 0.2s ease-in-out;
}

.increase-size-on-hover:hover {
    transform: scale(1.1);
}

.underline-text-on-hover {
    position: relative;
    display: inline-block;
}

.underline-text-on-hover::after {
    content: "";
    position: absolute;
    background-color: #100c0c;
    height: 4px;
    width: 0%;
    left: 0px;
    bottom: 10px;
    transition: all 0.5s ease-in-out;
}

.underline-text-on-hover:hover::after {
    width: 100%;
}

.underline-text-on-hover-color-white::after {
    content: "";
    position: absolute;
    background-color: #f8f6f1;
    height: 2px;
    width: 0%;
    left: 0px;
    bottom: 10px;
    transition: all 0.5s ease-in-out;
    z-index: 10;
}

.underline-text-on-hover-color-white:hover::after {
    width: 100%;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

.logo {
    font-family: "Tangerine";
    font-size: 50px;
    font-weight: bolder;
    text-decoration: none;
    color: #100c0c;
    margin: 20px;
    z-index: inherit;
}

.menu-button {
    background-color: transparent;
    border: none;
    width: 50px;
    height: 50px;
    margin: 20px;
    z-index: inherit;
}

.menu-button-image {
    width: 100%;
    height: 100%;
    z-index: inherit;
}

main {
    padding: 10%;
    padding-top: 5%;
}

main > p {
    font-size: x-large;
}

main > h1 {
    font-family: "Tangerine";
    display: inline-block;
    font-size: 80px;
    margin-bottom: 20px;
}

main > p > a {
    color: #100c0c;
}

.navigation-menu {
    background-color: #100c0c;
    position: fixed;
    transition: left 0.5s ease-out;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 3;
    left: 100%;
}

.navigation-menu-div {
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
    z-index: inherit;
    height: 100%;
}

.navigation-menu-slogan {
    position: absolute;
    font-family: "Tangerine";
    font-size: 70px;
    color: #f8f6f1;
    text-align: center;
    margin-right: 20%;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    .navigation-menu-slogan {
        font-size: 50px;
    }
}

@media (max-width: 750px) {
    .navigation-menu-slogan {
        font-size: 30px;
        left: 30%;
    }
}

@media (max-width: 600px) {
    .navigation-menu-slogan {
        display: none;
    }
}

.navigation-menu-div > a {
    position: relative;
    margin-right: 5%;
    text-align: right;
    color: #f8f6f1;
    font-size: 50px;
    text-decoration: none;
    z-index: inherit;
}

.menu-close-button {
    position: absolute;
    background-color: transparent;
    border: none;
    z-index: inherit;
    width: 40px;
    margin: 20px;
}

.menu-close-button > img {
    width: 100%;
    height: 100%;
    z-index: inherit;
}