
body {
    background-color: #eaeaea;
    display: flex;
    justify-content: center;
    margin: 0;
}

.black.text {
    color: #000000;
}

@font-face {
    font-family: 'AvenirHeavy';
    src: url('../fonts/AvenirNext-Heavy.otf');
  }

.main-container {
    background-color: #ffffff;
    padding:48px 56px;
    /* width: 1200px; */
    display: flex;
    /* border-radius: 20px;
    margin: 32px; */
    flex-direction: column;
    align-items: center;
    width: 900px;
}

.main-head {
    width: 100%;
    display: flex;
    /* align-items: center; */
    border-bottom: 1px solid #A7A9AC;
    padding-bottom: 32px;
    /* flex-direction: column; */
}

.logo:hover .letters {
    fill: #A7A9AC;
}

.bio {
font-family: 'CircularStd', Arial, Helvetica, sans-serif;
font-weight: 800;
font-style: italic;
/* text-transform: uppercase; */
color: #949494;
font-size: 16px;
margin: 0 0 8px 16px;
/* letter-spacing: 0.04em; */
width: 400px;
}

.quote {
    font-family: 'CircularStd', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #C4C4C4;
    font-size: 56px;
    width: 100%;
    /* margin: 0 14px; */
}

.quote p {
    padding: 32px 0;
    margin: 0;
    /* border-bottom: 1px solid #A7A9AC; */
}

.bio p {
    margin: 0px 16px;
}

.navigation {
    /* margin-bottom: 20px; */
    display: flex;
    flex: row;
    flex-wrap: wrap;
    justify-content: center;
}

.navlink {
    font-family: 'AvenirHeavy', sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 10px;
    transition: background-color .35s ease-in-out;
    height: 20px;
    }

.navlink:hover {
    color: #ffffff;
    background-color: #000000;
} 

.navlink.selected {
    color: #ffffff;
    background-color: #000000;
}

.main-content {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.banner {
    text-decoration: none;
    width: 100%;
    margin: 16px;
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
    height: 200px;
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.header-banner, .middle-banners, .bottom-banners {
    display: flex;
    flex-direction: row;
}

.top {
    background-image: url('../img/donut-box.jpg');
}

.left {
    background-image: url('../img/men.jpg');
}

.right {
    background-image: url('../img/women.jpg');
}

.bottom {
    background-image: url('../img/holiday.jpg');
}

.banner-label {
    font-family: omnes-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 32px;
    background-color: #8111A8;
    border-radius: 40px;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    transition: background-color .35s ease-in-out;
    text-align: center;
    line-height: 24px;
}

.banner-label div {
    margin: 0;
}

.banner:hover .banner-label {
    background-color: #F2E7F6;
    color: #8111A8;
}

.footer-content {
    font-family: omnes-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    color: #6D6D6D;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content a {
    color: #8111A8;
}

.suggestions {
    margin: 8px 16px;
    text-align: center;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 24px 0 32px 0;
}

.social img {
    width: 24px;
    height: 24px;
    padding: 0 8px;
}

.legal {
    color: #949494;
    font-size: 12px;
}

.main-content h1 {
    font-family: omnes-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    font-size: 56px;
}

@media (max-width: 700px) {
    .banner {
        margin: 8px;
    }
    
    .banner-label {
        font-size: 24px;
        padding: 0 16px;
        height: 48px;
    }

    .main-content {
        width: 80%;
    }

    .navlink {
        margin: 6px;
    }

    .header-banner {
        margin-top: 8px;
    }
}

@media (max-width: 550px) {
    .main-container {
        margin: 24px;
    }

    .main-content {
        width: 85%;
    }
}