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

body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
}

.nav{
    height: 5rem;
    background: #222;
    padding: 1rem 0;
}

.nav-title{
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.nav-centre{
    width: 90vw;
    max-width: 1170;
    margin: 0 auto;
}

.hero{
    background: linear-gradient(to right, 
    rgba(166, 153, 141, 0.5), 
    rgba(105, 62, 27, 1)
    ),url('./images/dress2.jpg') center/cover;
    min-height: calc(100vh - 5rem);
}

.hero-centre{
    width: 90vw;
    max-width: 1170;
    margin: 0 auto;
    color: #fff;
    padding: 5rem 0; 
}

.hero-centre h1{
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 0.75rem;
}

.hero-centre p{
    margin: 1.5rem 0;
    max-width: 35em;
}

.hero-btn{
    background: transparent;
    border: 1px solid #fff;
    padding: 0.75rem 0.25rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

