body{

font-family: Arial, sans-serif;
background:#f5f7fa;
margin:0;
display:flex;
justify-content:center;
align-items:center;
height:100vh;

}

.container{

text-align:center;
background:white;
padding:60px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
max-width:600px;

}

h1{

margin-bottom:10px;

}

h2{

color:#555;
margin-bottom:30px;

}

p{

color:#666;
margin-bottom:40px;
line-height:1.5;

}

.buttons{

display:flex;
gap:20px;
justify-content:center;

}

.button{

background:#2563eb;
color:white;
padding:12px 20px;
text-decoration:none;
border-radius:6px;
font-weight:bold;

}

.button:hover{

background:#1e4ed8;

}