* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #40c4ff;
    --secondary-color: #00bfa5;
    --tertiary-color: #f5f5f5;
    --quaternary-color: #37474f;
}

section {
    padding: 50px;
}

section h4 {
    padding-bottom: 30px;
    font-weight: bolder;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    color: var(--quaternary-color);
    padding-bottom: 50px;
}

body {
    
    overflow-x: hidden;
}

.hero p {
    padding-bottom: 20px;
    font-size: 18px;
}

.row {
    margin: auto;
}

.nav-wrapper {
    background-color: var(--tertiary-color);
    padding-left: 50px;
    padding-right: 50px;
}

.brand-logo {
    color: var(--primary-color);
}

.hero-image {
    background-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: bold;
    font-size: 78px;
}

.hero {
    text-align: left;
    color: var(--primary-color);
    background-color: white;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: normal;
}

.hero p {
    text-align: left;
    color: var(--quaternary-color);
    padding: 0 0 50px 0;
}

.hero button {
    border: none;
    padding: 10px 20px;
    margin-top: 25px;
    color: black;
    background-color: var(--secondary-color);
    text-align: center;
    border-radius: 5px;
}

.hero button:hover {
    border: none;
    outline: 0;
    display: flex;
    margin-top: 25px;
    color: white;
    background-color: var(--quaternary-color);
    text-align: center;
    cursor: pointer;
}

.page-footer h5 {
    padding: 60px 0;
}

.card .card-content,
.card .card-content a {
    font-weight: normal;
}

.card-title {
    text-shadow: 0px 2px 4px black;
}

.recipe-modal {
    padding: 10px;
}

.recipe-modal ol,
.recipe-modal ul {
    margin-left: 20px;
}

.recipe-modal ol li,
.recipe-modal ul li {
    margin-top: 7px;
    padding-left: 8px;
}

.recipe-modal .row .col {
    padding: 0;
}

.recipe-modal p {
    margin-top: 10px;
}

section .salad-bowl {
    height: 50%;
    position: relative;
}

.avocado-image {
    position: absolute;
    object-fit: contain;
    margin-top: -125px;
    right: -100px;
    max-width: 100%;
    height: auto;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.salad-bowl-image {
    position: absolute;
    margin-bottom: -200px;
    left: 0px;
    max-width: 100%;
    height: auto;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.avocado-text h4 {
    font-family: 'Red Hat Display', sans-serif;
    text-align: center;
    color: white;
}

.avocado-text p {
    text-align: center;
    font-size: 18px;
    margin: auto;
    width: 65%;
    color: white;
}

/* media queries */

@media screen and (max-width: 1420px) {
    .avocado-image {
      width: 35%;
      margin-top: -130px;
      right: 0%;
    }
    .salad-bowl-image {
        width: 30%;
        margin-top: 125px;
    }
}

@media screen and (max-width: 640px) {
    
    section {
        padding: 20px;
    }

    .nav-wrapper {
        background-color: var(--tertiary-color);
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .avocado-image {
      width: 60%;
      margin-top: -125px;
      right: -25%;
    }
    
    .salad-bowl-image {
        width: 45%;
        margin-top: 250px;
    }
}
