@charset "UTF-8";

body{
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background-color: #fffdf6;
    color: #6c584c;
    margin: 0;
}

strong{
    font-weight: 600;
}

main{
    margin: 0 auto;
    border-top: 1px solid #6c584c;
    width: 1000px;
}

section{
    margin: 80px 0;
}

figure{
    margin: 0px;
}



/*Navigation*/
nav{
    background-color: #6c584c;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    text-align: center;
}

nav li{
    display: inline-block;
    margin: 0 20px;
    text-transform: uppercase;
    list-style: none;
}



/*Headings*/
h1, h2, h3, h4{
    font-family: "gelica", sans-serif;
    font-style: normal;
}

h1{
    font-weight: 900;
    font-size: 48px;
}

h2{
    font-weight: 600;
    font-size: 36px;
}

h3{
    font-weight: 400;
    font-size: 24px;
}

h4{
    font-weight: 400;
    font-size: 18px;
}



/*Header*/
header{
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

header h1, header p{
    margin: 5px 0;
}

header p{
    font-size: 20px;
}



/*Links*/
a, a:visited{
    color: #6c584c;
    text-decoration: none;
}

a:hover, a:active{
    color: #adc178;
    font-weight: 600;
}

nav a, nav a:visited, footer a, footer a:visited{
    color: #fffdf6;
}

nav a:hover, nav a:active, footer a:hover, footer a:active{
    color: #dde5b6;
}



/*Footer*/
footer{
    background-color: #6c584c;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    text-align: center;
}

footer p{
    color: #fffdf6;
    font-size: 12px;
    padding: 10px 0px;
}

footer li{
    display: inline-block;
    margin: 0px 20px;
    text-transform: uppercase;
    list-style: none;
    padding: 10px 0;
}