/* Extra small devices (phones, less than 768px) */
body {
    margin: 0;
    padding: 0;
    font-family: 'Domine';
}
h1 {
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    color: #003F83;
    margin-top: 10%;
}
p {
    font-size: 20px;
    line-height: 1.6;
}
li {
    font-size: 20px;
}

/* Buttons */
.button_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 10%;
}
.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;
}

/* Accordions */
.accordion {
    background-color: white;
    color: #003F83;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-top: 1px solid #003F83;
    text-align: left;
    outline: none;
    transition: 0.4s; 
    font-size: 20px;
    line-height: 1.5em;
    font-family: 'Domine';
}
.accordion:after {
    content: '\002B';
    color: #003F83;
    float: right;
    margin-left: 5px;
    font-weight: bold;
    font-size: 30px;
}
.active:after {
    content: "\2212";
}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion_block {
    margin-left:10%;
    margin-right:10%;
    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) {
    .button_container {
        margin-bottom: 5%;
    }
    h1 {
        margin-top: 5%;
    }
    .accordion_block {
        margin-left: 20%;
        margin-right: 20%;
        margin-bottom: 5%;
    }
}
