@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap');

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Yanone Kaffeesatz', 'Noto Sans', sans-serif;
    overflow: hidden;
}

.body-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d6cfcf url('../img/psb.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

#message-container {
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 40px; 
    padding-top: 25%; 
}


#message-line1, #message-line2 {
    animation: fadeInOut 3s linear infinite;
    margin: 10px 0; 
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}