body {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    user-select: none;
}

.main_img_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: -150px;
}

.main_img img {
    width: 190px;    
    height: auto;
    display: block;
    margin: 0 auto; 
}

.main_content {
    color: white;
    font-family: 'Cascadia Code', monospace;
    font-size: 38px;
    text-align: center;
}

.main_content p {
    margin-bottom: 2px; 
}

.main_content a {
    margin-top: 2px; 
}

a {
    color: white;
    text-decoration: none;
    font-size: 25px;
}
a:hover {
    color: #919191; 
}

.information_container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
}

.information_container a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Cascadia Code', monospace;
}
.information_container a:hover {
    color: #919191; 
}

.notification_banner {
    position: fixed; 
    top: 20px;
    left: 50%; 
    transform: translateX(-50%); 
    color: #ffffff; 
    border: 2px dashed #ffffff; 
    border-radius: 10px; 
    text-align: center; 
    padding: 10px 20px; 
    z-index: 1000; 
    font-family: Cascadia Code, monospace; 
    box-sizing: border-box; 
}

.notification_banner p:hover {
    color: #919191; 
}