body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black;
    color: #009dcd; /* Medium blue */
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 2em; /* Double the text size */
}
.footer {
    position: absolute;
    bottom: 10px;
    color: #424040; /* Dim gray */
    font-size: 0.5em; /* Half the text size */
}
a {
    color: #009dcd; /* Medium blue */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.logo {
    width: 160px;
    height: 160px;
}
