@font-face {
    font-family: "Nunito";
    font-weight: normal;
    font-display: swap;
    src: url(../resources/fonts/Nunito/Nunito-SemiBold.ttf);
}
@font-face {
    font-family: "Nunito";
    font-weight: 600;
    font-display: swap;
    src: url(../resources/fonts/Nunito/Nunito-Bold.ttf);
}
@font-face {
    font-family: "Nunito";
    font-weight: bold;
    font-display: swap;
    src: url(../resources/fonts/Nunito/Nunito-ExtraBold.ttf);
}

* {
    box-sizing: border-box;
    font-family: "Nunito", Helvetica;
}

@media screen and (max-width: 350px) {
    * {
        font-size: 0.99em !important;
    }
}

/* Body */
body {
    background: url("../resources/background.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    margin: 0px;
    padding-top: 60px;
    padding-bottom: 45px;
}

h1 {
    text-align: center;
}

.box {
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,.2);
    border-radius: 10px;
    padding: 20px;
    background: hsla(0, 0%, 100%, .5);
    width: 75%;
    margin: 30px auto;
    overflow-x: auto;
}

@media screen and (max-width: 565px) {
    .box {
        width: 90%;
    }
}

a {
    color: #2F3E4E;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #55AC68;
    text-decoration: underline;
}

button {
    min-width: 25%;
    padding: 20px;
    border-style: none;
    box-shadow: 0px 2px 3px 0px #C0C0C0;
    background-color: #2F3E4E;
    color: #EDF0F1;
    font-size: 20px;
    border-radius: 10px;
}

button:hover {
    background-color: #55AC68;
    cursor: pointer;
}