@use "./button"; @use "./container"; @use "./nav"; @use "./profile"; @use "./routes/dashboard"; @use "./routes/login"; @use "./vars"; body { text-align: center; color: vars.$textColor; background-color: rgba(12, 17, 24, 1); font-family: Arial, Helvetica, sans-serif; margin: 0; overflow: hidden; } main { display: flex; flex-direction: row; justify-content: center; margin: 0 auto; max-width: 75%; } @media (max-width: 768px) { main { flex-direction: column; max-width: 90%; margin: 0 1rem; } } a { text-decoration: none; color: #1185fe; } a:hover { font-weight: bold; font-style: italic; }