body {
    margin: 0;
    padding: 0;
    background-color: #0f0f13; /* Fond sombre */
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.dot {
    color: #ff4500; /* Orange feu */
}

p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.btn {
    text-decoration: none;
    border: 2px solid #ff4500;
    color: #ff4500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ff4500;
    color: white;
}