@font-face {
    font-family: "Extra Light";
    src: url("./assets/extralight.woff2")
}

* {
    background-color: #dfdfdf;
    padding: 0%;
    margin: 0%;
    border: 0em;
}

body {
    margin-top: calc(calc(100vh - 15.85em) / 2);
}

.logo {
    display: block;
    margin: auto;
    height: 5em;
    padding: 0em 10em;
    margin-top: 5em;
}

.title {
    text-align: center;
    font-family: "Extra Light";
    font-size: 3em;
    font-weight: 200;
    color: #353e87;
    padding: 1.25em 0em 0.35em 0em;
}

.description {
    text-align: center;
    font-family: "Extra Light";
    font-size: 1.25em;
    font-weight: 200;
    color: #353e87;
    margin-bottom: 5em;
}

@media (prefers-color-scheme: light) {

    * {
        background-color: #dfdfdf;
    }

    .title .description{
        color: #353e87;
    }
}

@media (prefers-color-scheme: dark) {

    * {
        background-color: #343434;
    }

    .title, .description{
        color: #fff;
    }
}