/* Extra small devices (phones, less than 768px) */
body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    font-family: 'Domine';
}
h1 {
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    color: #003F83;
    margin-top: 10%;
}
p {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    padding-left: 10%;
    padding-right: 10%;
}

/* Buttons */
.button_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
}
.button {
    width: 160px;
    border: none;
    color: white;
    margin: 10px 20px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 10px;
}

/* Form */
label {
    font-size: 20px;
}
input[type=text], select, textarea {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 20px;
}
input[type=submit] {
    background-color: #4D7DE1;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Domine';
}
input[type=submit]:hover {
    background-color: #58B4E5;
}
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin-bottom: 10%;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    h1 {
        margin-top: 5%;
    }
    .container {
        margin: 0 auto;
        width: 50%;
        margin-bottom: 5%;
    }
}
