* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 8rem;
    color: #ff6b6b;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.btn {
    text-decoration: none;
    background: #4a90e2;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #357abd;
}