body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    position: relative;
    text-align: center;
}

.logo {
    opacity: 0.5;
    width: 80vw;
    max-width: 800px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.links a {
    text-decoration: none;
    color: rgb(8, 185, 216);
    font-size: 1.2em;
    margin: 5px 0;
}

.links a:hover {
    text-decoration: underline;
}