Thank You
body {
font-family: ‘Arial’, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 500px;
width: 90%;
}
h1 {
color: #800020;
font-size: 2.5rem;
margin-bottom: 20px;
}
p {
font-size: 1.2rem;
line-height: 1.6;
color: #555;
}
a {
display: inline-block;
margin-top: 20px;
padding: 12px 25px;
background-color: #800020;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #c49648;
}
@media screen and (max-width: 768px) {
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
a {
padding: 10px 20px;
font-size: 0.9rem;
}
}