@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html { 
    color-scheme: light dark;
}

.main {
    margin-top: 70px;
    margin-left: 20px;
}

#pagetitle {
    font-family: Momo Trust Display;
    font-size: 72px;

}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

.fadeInAnimated {
    opacity: 0;
    animation: fadeIn 1s forwards; /* forwards (animation-fill-mode) retains the style from the last keyframe when the animation ends */
}

.subtitle {
    font-family: Open Sans;
    animation-delay: .5s;
}

#status {
    color: yellow;
}
