
*{
    margin: 0;
    padding: 0;
    background-color: #D7CDED;
    font-family: 'camberregular', Arial, Helvetica, sans-serif;
}

h1{
    font-style: normal;
    font-family: 'cambersemi_bold';
}

h2{
    font-style: normal;
    font-family: 'cambermedium';
}

h3{
    font-style: normal;
    font-family: 'cambermedium';
}

h4{
    font-style: normal;
}

p{
    font-style: normal;
}


/* nav */
nav {
    overflow: hidden;
    /* position: fixed;  */
    top: 0; 
}

button{
    border: none;
}

.wrapper{
    /* position: relative; */
    width: 90%;
    height: 8rem;
    top: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

nav a, nav h4{
    text-decoration: none;
    color: black;
    padding-top: 8px;
    padding-bottom: 8px;
}

nav h4:hover{
    font-family: 'cambersemi_bold';
    font-weight: bold;
}

.info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

.logo{
    width: 79px;
    margin: 0px;
}

.search{
    width: 20px;
    margin: 0px;
    margin-left: 34px;
    margin-right: 34px;
}

.ham{
    width: 20px;
}

.mobile h4{
    text-align: center;
}

a{
    text-decoration: none;
}


@media (min-width: 375px) {
    h1{
        font-size: 26px;
        line-height: 34px;
    }
    h2{
        font-size: 16px;
        line-height: 21px;
    }
    h4{
        font-size: 20px;
    }

    p{
        font-size: 11px;
        line-height: 16px;
    }

    .bar h4{
        font-family: 'cambersemi_bold';
        font-weight: bold;
    }
    
    .bar{
        display: block;
        width: 90%;
        height: 8rem;
        top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
    }
    .logo{
        width: 77px;
    }

    /* This is the button element, with the class "controls" that users will click on in order to open and close the contents */
    .bar button.controls {			
        right: 0;
        bottom: 0;
        height: 30px;
        cursor: pointer;
    }

    .mobile .contents {						
        height: 0;
        padding: 0 10px;
        box-sizing: border-box;
        width: 100%;
        transition: all .5s;
    }

    /* When the parent #drawer element has the .open class applied, we change the height and padding of the contents to reveal it. */
    .mobile.open .contents {				
        height: 200px;
        padding: 30px 10px 10px 10px;
    }


}


@media (min-width: 768px) {
    p{
        font-style: normal;
        font-size: 15px;
        line-height: 22px;
    }
}

@media (min-width: 1240px) {
    h1{
        font-size: 40px;
        line-height: 52px;
    }
    
    h2{
        font-size: 25px;
        line-height: 32px;
    }
    
    h3{
        font-size: 20px;
        line-height: 26px;
    }
    
    h4{
        font-size: 15px;
        line-height: 20px; 
    }

    .mobile{
        display: none;
    }
    .wrapper{
        display: flex;
    }
}


