@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); html, body { font-family: 'Roboto', sans-serif; font-size: 16px; background-color: black; color: #f1f1f1; margin: 0; padding: 0; } header { /*display: none;*/ background-color: #414141; padding: 20px 40px; box-shadow: 0 10px 10px rgba(184, 6, 6, 0.63); position: fixed; left: 0; right: 0; top: 0; } header > h1 { text-shadow: 2px 3px 10px rgba(184, 6, 6, 0.63); } header a { color: #e7d5d5e3; text-decoration: none; } header a:hover { color: #d82941f3; } header a:active { color: #ffff00; } main { margin: 300px 40px 40px 40px; } div[data-colunas="grid"] { display: grid; grid-template-columns: auto auto auto; } div[data-colunas="flex"] { display: flex; flex-direction: row; } div.tipos-veiculos[data-colunas="flex"] > div { flex: 50%; } @media (max-width: 500px) { div[data-colunas="flex"] { flex-direction: column; } } @media (min-width: 500px) and (max-width: 800px) { div[data-colunas="flex"] { background-color: #555500; } }