@font-face {
    font-family: Roboto;
    src: url(/fonts/Roboto-Variable.ttf);
}

a {
    color: #08090b;
}


* {
    box-sizing: border-box;
}

body {
    background-image: url("/images/bg.png");
    margin: 0%;
}


.banner {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: white;

    margin-left: auto;
    margin-right: auto;
    width: 100%;

}


.topMenu {
    background-color: #326594;

    display: flex;
    justify-content: space-around;
    align-items: center;

    margin-left: auto;
    margin-right: auto;
    width: 100%;

}

.topMenu button {
    background-color: #326594;
    color: white;
    border-color: transparent;

    font-size: 180%;
    font-family: Roboto;
    font-weight: bold;

    /* margin: 10%; */
    margin-top: 20%;
    margin-bottom: 20%;
    cursor: pointer;

}


.selected button {
    color: #829db8;
}


.textBody {
    background-color: white;

    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 100px;
    font-family: Roboto;
}

.textBody h1 {
    color: #326594;
    font-size: 160%;
}

.textBody h2 {
    color: black;
    font-size: 160%;
}

.textBody p {
    color: #08090b;
    font-size: 150%;
}

.textBody button {
    background-color: #839db8;
    color: #08090b;
    border-color: transparent;
    padding: 10px;
    font-size: 150%;
    cursor: pointer;
    font-family: Roboto;
}

.specialAdImage {
    margin-left: 30%;
    margin-right: auto;
    width: 50%;
}

.specialBoy {
    padding-left: 2%;
    padding-right: 2%;
}

.bodyContainer div {
    display: table-cell;
    text-align: left;
    width: 35%;

    border: 10px;
    border-style: solid;
    border-color: transparent;
}

.footer {
    background-color: #326594;
    font-family: Roboto;
    color: white;
    width: 100%;
}

.footer h1 {
    font-size: 170%;
}

.footer p {
    font-size: 150%;
}

.footerContainer div {
    display: table-cell;
    text-align: left;
    width: 25%;
    padding-right: 2vw;
    padding-left: 2vw;

    border: 2vw;
    border-style: solid;
    border-color: transparent;
}

@media (max-width:600px) {
    .topMenu button {
        font-size: 80%;
    }

    .textBody h1 {
        font-size: 120%;
    }

    .textBody h2 {
        font-size: 110%;
    }

    .textBody p {
        font-size: 100%;
    }

    .textBody button {
        font-size: 100%;
    }

    .specialAdImage {

        width: 50%;
    }

    .footerContainer div {
        padding-right: 0vw;
        padding-left: 0vw;
    }

    .footer h1 {
        font-size: 120%;
    }

    .footer p {
        font-size: 100%;
    }

}

@media (min-width:900px) {
    .specialAdImage {
        margin-left: 15%;

        width: 30%;
    }

    .footerContainer div {
        padding-right: 5vw;
        padding-left: 5vw;
    }
}