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

body{
height:100vh;
background:linear-gradient(135deg,#4facfe,#00f2fe);
display:flex;
justify-content:center;
align-items:center;
}

.container{
width:100%;
max-width:900px;
padding:20px;
}

.card{
background:white;
padding:40px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.card h1{
margin-bottom:15px;
color:#333;
}

.card p{
color:#666;
margin-bottom:30px;
}

.info{
display:flex;
justify-content:space-between;
gap:20px;
margin-bottom:30px;
flex-wrap:wrap;
}

.box{
flex:1;
background:#f5f7fa;
padding:20px;
border-radius:10px;
}

.box h3{
margin-bottom:10px;
color:#333;
}

.active{
color:green;
font-weight:bold;
}

button{
padding:12px 25px;
border:none;
background:#4facfe;
color:white;
font-size:16px;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#2f80ed;
}

@media(max-width:700px){

.info{
flex-direction:column;
}

}