* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    text-align: center;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.email {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email:hover {
    color: #000;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
}
