* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #000;
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
}
.textpage {
justify-content: flex-start;
}
.logo {
max-width: 180px;
margin-bottom: 1.5rem;
}
h1 {
margin-bottom: 2rem;
letter-spacing: 0.05em;
}
.buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.buttons a {
padding: 0.8rem 1.6rem;
border: 1px solid #fff;
border-radius: 30px;
text-decoration: none;
color: #fff;
transition: all 0.2s ease;
}
.buttons a:hover {
background: #fff;
color: #000;
}
footer {
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
footer a {
color: #aaa;
text-decoration: none;
}
footer a:hover {
color: #fff;
}