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

/* ===== BODY ===== */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f4f7;
    color: #333;
}

/* ===== CONTAINER ===== */
.container {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== BUTTONS ===== */
.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    background: #007bff;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

/* ===== HEADER ===== */
h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

p {
    font-size: 20px;
    margin-bottom: 20px;
}
