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



h1 {
    font-size: 2em;
    font-weight: 200;
}
body {
    background-color: 0;
    font-family: 'roboto';
    text-align: center;
}
#time {
    font-size: 2em;
    margin-top:5vh;
}
.logo {
    margin-top: 5vh;
    width: 50vw;
}

.eventimage {
    display: none;
    margin-top: 5vh;
    height: 20vh;
}
iframe {
    height: 40vh;
    margin-top: 5vh;
    width: 80vw;
}


.fsimage {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("../images/.-image1.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* transition: opacity(1.0); */
}

.backplate {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.fadeInImage {
    animation: fadeIn 2s;
    animation-fill-mode: forwards;
}
.fadeOutImage {
    animation: fadeOut 2s;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
 
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}