html,
body{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Poppins', sans-serif;
    color: #494968;
}

body *{
    box-sizing: border-box;
}

body div{
    border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0 0 5px 0;
}

h1{
    font-size: 52pt;
}

h2{
    font-size: 40pt;
}

h3{
    font-size: 30pt;
}

h4{
    font-size: 21pt;
}

h5{
    font-size: 18pt;
}

h6{
    font-size: 16pt;
}

p{
    margin-top: 0;
}

button{
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    box-shadow: none;
    border: none;
    padding: 10px;
    background: #DB6484;
    color: #FFF;
    cursor: pointer;
    font-size: 17px;
}

.container{
    margin: 20px auto;
    width: 90%;
    max-width: 1000px;
}

.container div{
    color: #FFF;
}

section{
    margin: 30px 0;
}

.row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.column{
    padding: 0 20px;
}

.boxes{
    display: flex;
    margin: -20px;
}

.boxes .box{
    flex: 1;
    margin: 20px;
    padding: 20px;
    text-align: center;
}

.image-with-text{
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 0.1em 0.1em 0.1em rgba(0,0,0,0.4);
}