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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #2c3e50, #4c5767);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #e0e0e0;
    margin: 0;
}

.container {
    background-color: #2c2f33;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 450px;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.contact a {
    color: #1abc9c;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #16a085;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

