*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Grold-Light';
}
html, body{
    width: 100vw;
    overflow: hidden;
}
html{
    overflow-y: auto;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header, main, footer, section{
    width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}
.bg{
    background-position:center;
    background-size: cover;
    background-repeat: no-repeat;
}
.content{
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: 1240px;
    padding: 100px 20px;
}