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

.container {
    text-align: center;
    padding: 2rem;
    background-color: #292929;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 6rem;
    margin: 0;
    color: #808080;
    font-family: 'Poppins', sans-serif;
    font-size: 10em;
    font-weight: 600;
}

p {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: #555555;
}

a {
    display: inline-block;
    font-size: 1rem;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
}