@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::after {
    content: "";
    position: absolute;
    background-color: #100c0c;
    height: 2px;
    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 {
    width: 100vw;
    display: grid;
    grid-template-areas: "content images";
}

.content {
    grid-area: "content";
}

.images {
    position: relative;
    display: grid;
    margin-top: 25vh;
    place-items: center;
    grid-area: "images";
}

.images > img {
    position: absolute;
    width: 60%;
}

.images img:nth-child(1) {
    transform: translate(-30%, -10%);
    margin-right: 10%;
}
.images img:nth-child(2) {
    transform: translate(10%, 20%);
    margin-right: 10%;
}

.content > h1 {
    font-family: "Tangerine";
    font-size: 50px;
    display: inline-block;
    position: relative;
    margin-top: 2%;
    margin-bottom: 2%;
    left: 50%;
    transform: translate(-50%, 0%);
}

label, input, textarea {
    display: block;
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%, 0%);
    margin-bottom: 10px;
}

@media (max-width: 750px) {
    main {
        grid-template-areas: "content";
    }
    label, input, textarea {
        display: block;
        width: 75%;
        margin-left: 50%;
        transform: translate(-50%, 0%);
        margin-bottom: 10px;
    }
    .images {
        display: none;
    }
}

textarea {
    resize: vertical;
}

.submit-button {
    margin-left: 50%;
    transform: translate(-50%, 0%);
}

.submit-button {
    color: #100c0c;
    background-color: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
    font-size: 13px;
    line-height: 29px;
    width: 100px;
}

.submit-button:hover {
    cursor: pointer;
}

.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;
}