@use "./button"; @use "./container"; @use "./components/post"; @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; } main { display: flex; flex-direction: row; justify-content: center; margin: 0 auto; max-width: 75%; min-width: 0; width: 100%; } @media (max-width: 768px) { main { flex-direction: column; max-width: 100%; margin: 0; padding: 0 0.5rem; box-sizing: border-box; } } a { text-decoration: none; color: #1185fe; } a:hover { font-weight: bold; font-style: italic; }