website/styles.css
TheErrorExe 220f89fc55 test
2025-02-07 13:18:03 +00:00

47 lines
782 B
CSS

body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
.button-container {
display: flex;
justify-content: center;
gap: 20px;
}
.button {
display: inline-block;
padding: 15px 30px;
font-size: 18px;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0056b3;
}