body{
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

a{
    text-decoration: none;
}

.center-h{
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-c{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 2em;
    flex-wrap: wrap;
}

header img{
    height: auto;
    width: 20rem;
}

#tema{
    background-color: lightgray;
    border-style: none;
    border-radius: 10px;
    padding: 0.5em;
}

#tema img{
    width:2rem;
    margin-right: 5px;
}

#tema:hover{
    cursor: pointer;
}

main{
    padding-top: 30px;
    padding-bottom: 50px;
}

h2{
    text-align: center;
}

.card-marca{
    background: rgba( 255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 15px;
    padding: 1em;
    color:aqua;
    min-width: 20%;
    width:20rem;
    min-height: 20rem;
    cursor: pointer;
    max-width: 75vw;
}

.card-marca img{
    width: 8rem;
    height: auto;
    margin-bottom: 20px;
}

.card-marca:hover{
    box-shadow: 0 0 0.1vw 0.4vw #e0f7fa,0 0 0.4vw 0.6vw #00e5ff,0 0 1vw 0.4vw #26c6da;
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
}

footer{
    position:fixed;
    left: 0;
    bottom: 0;
    padding: 0.5em;
    background-color:black;
    width: 100%;
    color:white;
}

footer p{
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width:600px) {
    header{
        justify-content: center;
    }
}