77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f9fbfd;
|
|
color: #333;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.error-container {
|
|
max-width: 600px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.error-container img {
|
|
max-width: 300px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
margin-bottom: 7px;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
margin-bottom: 30px;
|
|
color: #555;
|
|
}
|
|
|
|
.back{
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
background-color: #3498db;
|
|
color: #fff;
|
|
padding: 12px 24px;
|
|
border-radius: 30px;
|
|
transition: background 0.3s ease;
|
|
font-weight: 500;
|
|
/* margin-bottom: 2rem; */
|
|
}
|
|
|
|
.back:hover {
|
|
background-color: #2980b9;
|
|
}
|
|
|
|
footer{
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.social-links{
|
|
/* margin-top: 2rem; */
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
/* background-color: red; */
|
|
}
|
|
|
|
.social-links a{
|
|
margin: 0 0.5rem;
|
|
}
|
|
|
|
.social-links a img{
|
|
width: 1.5rem;
|
|
}
|