*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background: #ededed;   /* almost black */
padding:10px;
line-height:1.6;
}
.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* TYPOGRAPHY SCALE */

h1{font-size:64px;}
h2{font-size:42px;}
h3{font-size:26px;}

.section{
padding:100px 0;
text-align:center;
}

/* BUTTON */

.btn{
background:#caa45f;
color:white;
padding:16px 30px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:.3s;
}

.btn:hover{
background:#b89347;
}
