body {
    margin: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


header {
    background-color: rgba(165, 42, 42, 0.265);
    border-bottom: 5px #ee7497 solid;
}

header nav {
    float: right;
    display: block;
    min-width: fit-content;
    min-height: fit-content;
}

nav {
    min-height: fit-content;
}

nav ul {
    padding: 1.7vw;
    list-style: none;
    display: flex;
    flex-direction: row;
}

li {
    padding: 2vw;
    font-size: larger;
    font-weight: bold;
}

li a {
    text-decoration: none;
    color: rgb(235, 138, 108)
}


header img {
    height: 150px;
    padding: 0 0 0 3vw;
}

li>a:hover {
    color: white;
}

.current {
    color: black;
    ;
}

.welcome {
    text-align: center;
    clear: both;
    font-size: large;
}

.welcome>div {
    display: flex;
    margin: 3vw;
    font-size: x-large;
    align-items: center;
}

.welcome h4 {
    font-weight: 100;
}

.welcome img {
    border-radius: 2%;
}

h1 {
    text-align: center;
}

#menu {
    display: flex;
    justify-content: space-evenly;
    margin: 1vh 5vw;
}

#menu>div {
    display: block;
}

.contact {
    text-align: center;
    border: #ee7497 solid 5px;
    border-radius: 5px;
    margin: 0 35vw;
    min-width: fit-content;
    padding: 2vw;
}

input,
textarea {
    padding: 1.25vh;
    width: 250px;
}

textarea {
    height: 50px;
}

#reviews {
    display: flex;
    justify-content: space-evenly;
    margin: 0 35vw;
}

.quote {
    background-color: rgba(165, 42, 42, 0.265);
    border: #ee7497 solid 5px;
    text-align: center;
    width: 100%;
    min-width: fit-content;
    margin: 0 2vh 0;
}

.quote>span {
    font-size: x-large;
    align-items: flex-end;
}

.about {
    margin: 0 7vw;
    clear: none;
    font-size: larger;
}

.about>h3 {
    text-align: center;
    clear: both;
}

.about>img {
    float: right;
    height: 270px;
    margin: 1.5vh 0 0 4vw;
}

@media screen and (max-width:925px) {
    .welcome div {
        display: block;
        text-align: center;
    }

}

@media screen and (max-width: 750px) {
    li {
        font-size: large;
    }

    header img {
        height: 100px;
    }

    .about>img {
        height: 200px;
    }
}

@media screen and (max-width:640px) {
    nav ul {
        flex-direction: column;
        padding: 1vw;
    }

    .welcome {
        font-size: medium;
    }

    .welcome img {
        width: 350px;
    }

    header img {
        height: 250px;
    }

    .contact {
        margin: 0 20vw;
    }

    .about>img {
        display: block;
        float: none;
        height: auto;
        width: 50vw;
        margin: 1.5vh auto;
    }
}

@media screen and (max-width:375px) {
    header img {
        height: 200px;
    }

    .welcome {
        font-size: x-small;
    }

    .welcome img {
        width: 300px
    }

    li {
        font-size: medium;
    }

    .contact {
        margin: 0 5vw;
    }
}