25 lines
409 B
CSS
25 lines
409 B
CSS
body {
|
|
font-family: "Source Sans 3", sans-serif !important;
|
|
}
|
|
|
|
|
|
/* Pantallas Ultrawide (1920px en adelante) */
|
|
@media (min-width: 1920px) {
|
|
main {
|
|
/* border: 6px solid red; */
|
|
/* max-width: 80vw !important; */
|
|
width: 80vw !important;
|
|
min-height: 85vh !important;
|
|
margin: auto;
|
|
margin-top: 2em;
|
|
margin-bottom: 2em;
|
|
display: grid;
|
|
/* place-content: center; */
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|