body{
margin:0;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
font-family:Arial, Helvetica, sans-serif;
background:linear-gradient(135deg,#FFF8E7,#FFE5D9);
}



.container{
display:flex;
justify-content:center;
align-items:center;
}


.card{
background:white;
padding:40px;
width:350px;
text-align:center;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.4s;
}

.card:hover{
transform:translateY(-8px);
}


h1{
margin-bottom:20px;
color:#444;
}


#affirmation{
font-size:18px;
line-height:1.6;
color:#555;
min-height:60px;
}



button{
margin-top:25px;
padding:12px 26px;
border:none;
border-radius:25px;
font-size:16px;
cursor:pointer;
color:white;
background:linear-gradient(45deg,#ff7e5f,#ffb199);
transition:all 0.3s ease;
}

button:hover{
transform:scale(1.08);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
background-color: #ec390c;
}

button:active{
transform:scale(0.95);
}