@font-face {
    font-family: 'FD-Bold';
    src: url('../fonts/TT-Commons-Bold.otf') format('otf');
}

@font-face {
    font-family: 'FD-Light';
    src: url('../fonts/TT-Commons-Light.otf') format('otf');
}

html {
    background-color: #9DB5D7;
    color: #ffffff;
}

#content {
    width: 100%;
    height: 100vh; /* Set the container height to the full viewport height */
    display: flex;
    justify-content: center; /* Horizontally center the child elements */
    align-items: center; 
}

.headline {
    width: 300px; /* Set your preferred width */
    padding: 20px; /* Optional padding */
    border-radius: 8px;
}

h1 {
    font-family: 'FD-Bold';
}

h3 {
    font-family: 'FD-Light';
}

