html { 
    @media (min-width: 750px) {
        margin-bottom: 4%;
    }
    @media (max-width: 550px) {
        margin-bottom: 20%;
        font-size: 0.8em;
    }
    scrollbar-width: none; 
}

.head{
    background-color: blue;
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border-radius: 20px;
    height: fit-content;
    @media (max-width: 550px){
        font-size: .5em;
    }
}

.cont{
    @media (min-width: 750px){
    display: flex;
    }
}

.box{
    padding: 10px;
    background-color: rgb(98, 255, 0);
    flex: 1;
    margin: 10px;
    font-size: 2em;
}

footer{
    a {
        text-decoration: none;
        color: inherit;
        display : flex;
    }
    position: fixed;
    display: flex;
    bottom: 0;
    width:fit-content;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: rgb(32, 28, 28);
    border-radius: 6px;
  	margin-bottom: 0.5%;
}

.icon{
    padding: 5px;
    margin: auto;
    width: 2em;
    height: 2em;
}



body{
    background-color: black;
    color: white;
    list-style-position: inside;
}
