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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f172a;
    color: white;
    text-align: center;
    padding-top: 120px;
}

h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

p {
    font-size: 22px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.button:hover {
    background: #1d4ed8;
}