/* From https: //fontlibrary.org/en/font/chicagoflf */
/* ChicagoFLFRegular - SIL Open Font License 1.1 */
/* Added to the project due to remote font loading issues with GitHub Pages */
/* @font-face {
    font-family: 'ChicagoFLFRegular';
    src: url('../../../assets/fonts/ChicagoFLFRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Proxima Nova", Montserrat, Helvetica, Verdana, Sans-Serif;
    background-color: #34657f;
    color: white;
}

#container {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


#footer {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #333f48;
    padding: 10px 0 20px 0;
}

#links {
    display: flex;
    justify-content: center;
    align-items: center;

    a {
        margin: 10px;
    }
}

.septembed {
    width: 90%;
    margin: auto auto 10px auto;
    overflow-x: hidden;
    border-radius: 19px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.floating-button {
    background-color: #34657f;
    border: 0px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(51, 47, 47, 0.5);
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.floating-button:hover {
    background-color: #2f5c73;
}


@media (prefers-color-scheme: dark) {
    body {
        background-color: #333f48;
    }

    #footer {
        background-color: #262f36;
    }
}

h1 {
    text-align: center;
    font-size: 50pt;
}