/* Extra small devices (phones, less than 768px) */
body {
    margin: 0;
    padding: 0;
    font-family: 'Domine';
}

h1 {
    text-align: left;
    font-size: 40px;
    font-weight: normal;
}

p {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}

li {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}

/* Add space for the footer. */
#whitespace {
    height: 100px;
}

ol>li {
    margin-bottom: 20px;
}

ol>li>.heading {
    color: #003F83;
    font-weight: bold;
}

.circle {
    list-style-type: circle;
    margin-left: 20px;
}

/* Heading */
#heading {
    text-align: center;
    color: #003F83;
    margin-top: 10%;
}

/* Buttons */
.button_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 10%;
}

.button {
    width: 200px;
    border: none;
    color: white;
    margin: 10px 20px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #58B4E5;
    opacity: 0.8;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    font-size: 16px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -100px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.textbox {
    padding: 0 10% 0 10%;
    margin-bottom: 5%;
}

/* 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%;
}

/* Images */
.img_pss {
    display: block;
    margin: 0 auto;
    width: 300px;
    padding-bottom: 5%;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .img_pss {
        width: 600px;
    }

    #whitespace {
        height: 150px;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .button_container {
        margin-bottom: 5%;
    }

    #heading {
        margin-top: 5%;
    }

    .img_pss {
        width: 900px;
    }

    .accordion_block {
        margin-left: 20%;
        margin-right: 20%;
        margin-bottom: 5%;
    }

    .textbox {
        padding-left: 15%;
        padding-right: 15%;
    }

    #whitespace {
        height: 175px;
    }
}