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

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.button {
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #333333;
}
a {
    text-decoration: none;
    color: lightgreen;
}
.under-construction-container {
    position: absolute;
    bottom: 100px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #1f1f1f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
.under-construction-container h1 {
    color: lightgreen;
}
.under-construction-container p {
    color: #ffffff;
}