Files
mesite/public/css/style.css
2025-08-19 18:09:38 -05:00

28 lines
574 B
CSS

body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
color: #333;
}
.main-container {
text-align: center;
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.social-links a {
color: #007bff;
text-decoration: none;
margin: 0 0.5rem;
}
.social-links a:hover {
text-decoration: underline;
}