body {
    margin: 0;
    padding: 220px 0 0 0;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
}

#logobar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 180px;
    align-items: center;
    text-align: center;
    justify-items: center;
    background-color: rgb(0,0,0);
}

#logo {
    position: relative;
    width: 260px;
    height: auto;
    margin: 0 auto;
}

#menubar {
    position: fixed;
    top: 180px;
    width: 100%;
    height: 40px;
    background-color: rgb(128,128,128);
}

#menubar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#menubar li {
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-family: Montserrat, sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: rgb(255,255,255);
}

#menubar li a {
    text-decoration: none;
    color: rgb(255,255,255);
}

#menubar li a:hover {
    font-weight: 700;
}

#container {
    padding: 20px;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    grid-template-rows: auto;
    grid-column-gap: 1em;
    justify-content: space-evenly;
}

.categoria {
    height: 50px;
    line-height: 50px;
    border: 1px solid rgb(0,0,0);
    border-radius: 10px;
    text-align: center;
}

.active {
    background-color: darkred;
}

@media only screen
    and (max-width: 480px) {
        
        #menu {
            display: none;
        }
}