body {
    margin: 0;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #0f0f0f;
    color: white;

    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

p {
    color: #bdbdbd;
    font-size: 1.2rem;
}

.construction {
    margin-top: 30px;
    font-size: 1.1rem;

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}