body {
    width: 100%;
    margin: 0;
}

.header {
    height: 80px;
    width: 100%;
    border-radius: 3px;
    padding-left: 15px;
    padding-top: 10px;
    background: rgb(250,184,77);
    background: linear-gradient(90deg, rgba(250,184,77,1) 0%, rgba(250,205,133,1) 35%, rgba(240,231,180,1) 100%);
    box-sizing: border-box;
}

.overlay {
    width: 100%;
    height: 450px;
    position: relative;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    text-shadow: 3px 3px #000;
    overflow: hidden;
}

.overlay .headline {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
}

.overlay .copy {
    width: 75%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 190px;
}


.copy {
    margin-top: 20px;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
}

.headline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 30px;
}

.copy {
    margin-top: 20px;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
}

.container-bottom {
    text-align: center;
}

.container-bottom .headline {
    font-size: 24px;
}

.container-bottom .logo {
    max-width: 90%;
    margin: 15px auto;
    display: block;
}

.box-container {
    width: 100%;
    max-width: 930px;
    margin: 25px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #fff;
    flex-wrap: wrap;
}

.box {
    color: rgb(74,73,73);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: bold;
    font-size: 20px;
    border-radius: 15px;
    margin: 20px 30px;
    width: 250px;
    height: 250px;
    line-height: 245px;
    border: 1px solid #fab84d;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(74,73,73,0.2);
    -moz-box-shadow: 0px 0px 15px 1px rgba(74,73,73,0.2);
    box-shadow: 0px 0px 15px 1px rgba(250,184,77,0.2);
    box-sizing: border-box;
    
}

.icon {
    height: 53.33px;
    top: 80px;
    position: relative;
    display: block;
    margin: 0 auto;
    
}

.box:nth-child(1) .icon {
    margin-left: 92px;
}

.footer {
    border-top: 1px solid rgba(74,73,73,0.2);
    padding-top: 25px;
    margin: 30px auto;
    text-align: center;
    width: 100%;
    max-width: 940px;
    font-size: 18px;
}

a {
    color: rgba(250,184,77,1);
    text-decoration: none;
}

a:hover {
    color: rgb(158, 105, 21);
    text-decoration: underline;
}