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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #333;
}

/* Center container */
.container {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Heading */
h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Paragraph */
p {
    font-size: 18px;
    color: #666;
}

/* Button */
.button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.button:hover {
    background: #45a049;
}