#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(170px, 1fr) );
    grid-template-rows: repeat(auto-fit, 130px);
}

.element{
    margin: 8px;
    color: white;
    border-radius: 8px;
    padding: 8px;
    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: 5px;
    box-sizing: border-box;
    font-weight: bold;
    border-bottom: solid;
    border-top: solid;
    border-width: 5px;
    border-color: var(--bar);
}



.field{
    text-align: center;
    background-color: var(--elem);
    padding: 5px;
    color: white;
    border-radius: 5px;
}

.field-text{
    display: block;
    float: left;
    padding: 4px;
}
.element img{
  width: 50px;
}


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


#logo{
    float: left;
    margin: 2px;
    width: auto;
}


#logo img{
    height: 80px;
    margin: 0px;
    border-radius: 10%;
    display: inline-block;
}

#logo-info{
  float: left;
}


#info{
    display: inline-block;
    margin: 5px;
    font-weight: 700;
    font-size: 14px;
    color: white;
    /*line-height: 1.2;*/
    text-align: left;
    /*padding: 5px;*/
    float: left;
}

#info h1{
  margin: 0px;
  font-size: 18px;
}


#info p{
  margin-top: 10px;
}
