body{
    margin:0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg,#667eea,#764ba2);
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
}

.container{
    text-align:center;
}

h1{
    font-size:40px;
    margin-bottom:10px;
}

p{
    font-size:18px;
}

button{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    border-radius:8px;
    background:white;
    color:#333;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#f1f1f1;
}