
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background: rgb(128,0,255);
    background: linear-gradient(309deg, rgba(128,0,255,1) 26%, rgba(25,231,255,1) 90%, rgba(25,231,255,1) 90%);
    min-height: 100vh;
    color: white;
    /* overflow: hidden; */
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* ESTILIZANDO A NAVBAR */
nav {
    margin: 20px 0;
}

div.unidades a, div.tipos a{
    display: inline-block;
    padding: 3px 22px;
    /* line-height: 40px; */
    border-radius: 15px;
    text-decoration: none;
    text-transform: none;
    color: white;
    border: 1px solid white;
    transition: 0.2s;
    margin: 0 5px;
}

div.unidades a.active, div.tipos a.active {
    background: rgb(255, 255, 255);
    color: black;
}

div.unidades a:hover, div.tipos a:hover {
    background: rgb(255, 255, 255);
    color: black;
    transform: scale(1.05); 
}
