```html
body {
fontfamily: Arial, sansserif;
margin: 0;
padding: 0;
backgroundcolor: f5f5f5;
}
.covercontainer {
width: 100%;
height: 100vh;
display: flex;
justifycontent: center;
alignitems: center;
}
.covercontent {
textalign: center;
}
h1 {
fontsize: 3rem;
color: 333;
marginbottom: 20px;
}
p {
fontsize: 1.2rem;
color: 666;
marginbottom: 30px;
}
.btn {
padding: 10px 20px;
backgroundcolor: 007bff;
color: fff;
border: none;
borderradius: 5px;
fontsize: 1rem;
texttransform: uppercase;
cursor: pointer;
transition: backgroundcolor 0.3s ease;
}
.btn:hover {
backgroundcolor: 0056b3;
}