#container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    margin-bottom: -80px;
    padding-bottom: 80px;
    background-color: var(--bc);
    height: 100%;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
    grid-template-rows: repeat(auto-fit, 80px);
}

.element{
    margin: 8px;
    color: white;
    border-radius: 8px;
    padding: 5px;
    background-color: var(--elem);
    border: solid;
    border-color: var(--elem);
    display: block;
    text-align: center;
    text-decoration: none;
}

.element:hover{
    border-color: var(--hover)
}


.head{
    width: 100%;
    background-color:  var(--main);
    text-align: right;
    padding: 10px;
    box-sizing: border-box;
    font-weight: bold;
    border-bottom: solid;
    border-top: solid;
    border-width: 5px;
    border-color: var(--bar);
}


.layout{
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    text-align: center;
}

.search{
    margin-top:25px;
    margin-bottom:25px;
}

.search span{
    margin-right: 10px;
}


input[type=text] {
    padding:5px; 
    border:2px solid #ccc; 
    border-radius: 5px;
}


.notactive{
    background-color: gray;
    border-color: gray;
}



