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;
}


.info_box {
    color: white;
    font-size: 14px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    text-align: center;
}


.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; 
}