@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: #707070;
}

main {
    text-align: center;
}

.container {
    background-color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

header {
    text-align: center;
    margin: 40px 10px 20px;
}

img {
    width: 100%;
}

header img {
    max-width: 500px;
}

.secondary {
    max-width: 350px;
    padding-top: 40px;
}

.columns3, .columns2 {
    text-align: center;
}

.column img {
    width: 70%;
    max-width: 400px;
    margin: 10px;
}

.textblock {
    width: 80%;
    margin: 30px auto;
}

.center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 12px;
}

hr {
    margin-bottom: 20px;
}

.explanation {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

p, ul {
    font-size: 18px;
    text-align: left;
    margin-bottom: 36px;
}

li {
    margin-bottom: 12px;
}

button, .button {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #9c1d26;
    background-color: #fff;
    color: #9c1d26;
    padding: 10px 20px;
    text-decoration: none;
}

button:hover, .button:hover {
    color: #fff;
    background-color: #9c1d26;
}

img.logo {
    height: 60px;
    width: auto;
}

form {
    margin-top: 20px;
}

@media all and (min-width: 750px){
    .columns3 {
        display: flex;
        justify-content: space-between;
    }
    
    .columns2 {
        display: flex;
        justify-content: space-around;
    }
    
    .columns3 .column img {
        width: 90%;
        margin: 0;
    }
    
    header, .columns3, form, .textblock {
        margin-bottom: 60px;
    }
    
    header {
        margin-top: 80px;
    }
}
