32 lines
487 B
CSS
32 lines
487 B
CSS
.error-container {
|
|
text-align: center;
|
|
margin-top: 100px;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.error-container h1 {
|
|
font-size: 5em;
|
|
margin-bottom: 20px;
|
|
color: #ff6b6b;
|
|
}
|
|
|
|
.error-container p {
|
|
font-size: 1.5em;
|
|
margin-bottom: 30px;
|
|
color: #333;
|
|
}
|
|
|
|
.home-link {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.home-link:hover {
|
|
background-color: #0056b3;
|
|
}
|