body{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

.main{
    width: auto;
    background-color: black;
    padding: 10px;
    height: -webkit-fill-available;
    
}

.header{
    width: 95%;
    margin: auto;
    height: 6rem;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 2px solid white;
    
}

.left{
    width: 20%;
    display: flex;
    box-sizing: border-box;
}

.right{
    width: 60%;
    display: flex;
    justify-content: space-around;
}

a{
    text-decoration: none;
    color: var(--grh);
}

a:hover{
    color: #1aff00;
}

#logo{
    font-size: 40px;
    font-weight: 900;
    color: var(--grh);
    margin-left: 10%;
}

:root{
    --grh: #14c500;


}

.items{
    font-size: 18px;
}
