@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;1,400&family=DM+Serif+Display:ital@0;1&display=swap");

:root {
    --white: #f5f1ed;
    --black: #331817;
    --brown1: #8d5b48;
    --brown2: #ffcf9c;
    --red: #df4540;
}

html,
body {
    margin: 0px;
    padding: 0px;
    background-color: var(--white);
}

.webPageContent {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
    overflow-x: scroll;
    overflow-y: hidden;
}

.sectionContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    width: 100vw;
    gap: 10vw;
    margin-left: 5vw;
}

h1 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 5em;
    line-height: 120%;
    margin-top: 0em;

    color: var(--black);
}

h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 0em;
    color: var(--black);
}

h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: italic;
    margin-top: 0em;
    font-size: 2vw;

    color: var(--black);
}

p {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 1vw;
    font-style: normal;
    line-height: 150%;

    color: var(--black);

    margin-top: 0vh;
}

.startBar {
    display: flex;
    position: fixed;
    left: 0px;
    height: 100vh;
    width: 10vw;
    z-index: 1;
    background-color: var(--white);

    img {
        align-self: center;
        height: 50vh;
        margin-top: 40%;
        margin-left: 10%;
    }
}

.gridBg {
    position: fixed;
    left: 0px;

    width: 100vw;
    border-bottom: 1px solid var(--brown1);
    z-index: 0;
}

.logoImg {
    position: fixed;
    height: 2vw;
    left: 5vw;

    margin-top: 4vh;
    z-index: 2;
    background-color: var(--brown2);
    padding: 1vw;
    padding-left: 2vw;
    padding-right: 2vw;
}

.textBox1 {
    width: 30vw;
    height: 50vh;
    text-wrap: wrap;

    z-index: 1;

    h1 {
        font-size: 5vw;
        line-height: 105%;
        margin-bottom: 3vh;
    }
    p {
        margin-left: 1.5vh;
        width: 35vw;
    }
}

.textBox2 {
    width: 40vw;
    height: 50vh;
    text-wrap: wrap;

    z-index: 1;

    h3 {
        margin: 0.4vh;
    }
    h3:first-child {
        margin-top: 1vh;
    }
    p {
        margin-top: 0vh;
        width: 30vw;
    }
}

.textBox3 {
    width: 60vw;
    height: 50vh;
    text-wrap: wrap;

    z-index: 1;

    h1 {
        margin-top: 3vh;
        width: 40vw;
    }
    p {
    }

    a {
        font-size: 1.5vw;
        padding: 1.8vw 4vw;
        text-decoration: none;
        color: var(--white);
        font-family:
            "DM Serif Display",
            sans serif;

        background-color: var(--red);
        margin-right: 2vw;
    }
}

.mainImg {
    width: 60vw;
    height: 50vh;
    object-fit: cover;

    margin-left: 0vw;
    margin-right: 10vw;

    z-index: 1;
}

.secondImg {
    width: 35vw;
    height: 50vh;
    object-fit: cover;

    margin-left: 0vw;

    z-index: 1;
}

.thirdImg {
    width: 40vw;
    height: 50vh;
    object-fit: cover;

    margin-left: 0vw;

    z-index: 1;
}

.bottomBar {
    position: fixed;
    bottom: 10vh;
    margin-left: 5vw;

    height: 2vh;
    z-index: 5;

    h3 {
        margin: 0px;
        margin-bottom: 2vh;
    }
    p {
        line-height: 40%;
    }
    img {
        position: fixed;
        right: 5vw;
        bottom: 2vh;
        height: 4.5vw;
    }
}

.navbar {
    font-family: "DM Sans", sans-serif;
    position: fixed;
    height: 2vw;
    left: 10vw;

    background-color: var(--brown2);

    margin-top: 4vh;
    z-index: 10;

    padding: 1vw;

    align-content: center;

    a {
        color: var(--black);
        text-decoration: none;
        font-size: 1vw;
        padding-right: 4vw;
        padding-left: 2vw;
    }
    a:last-of-type {
        padding-right: 2vw;
    }
}
