/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container styles */
.container {
    text-align: center;
    max-width: 600px;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h1 {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

/* Paragraph styles */
p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Link styles */
a {
    display: inline-block;
    margin-top: 10px;
    font-size: 1rem;
    color: #ffffff;
    background: #ff6f61;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

a:hover {
    background: #e85c50;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
