footer{
    background-color: black;
    width:100%;
    max-height: 1000px;
    display:flex;
    justify-content: center;
    text-align: center;
}
.footer-box{
    padding: 20px 0;
    max-width:720px;
    min-width:300px;
    text-align: center;
    font-size:0.8em
}
.footer-box p{
    font-size: 0.9em;
    width:40%;
    color: white;
}
.footer-box a:hover{
    text-decoration:underline;
}
.footer-subbox{
    display:flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer-subbox img{
    max-height: 60px;
    display: block;
}
.footer-subbox div{
    display: inline-block;
    width:50%;
}
.socials{
    margin: 10px 0;
    display: flex;
    justify-content: center;
}
.socials img{
    min-height:35px;
    max-height: 40px;
    margin: 0px 5px;
}
.socials img:hover{
    transform:scale(1.3);
    transition:0.3s;
}
.footer-box ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px;
    justify-content: center;
}
.footer-box a{
    text-decoration: none;
	color: white;
}
@media (max-width: 305px){
    .footer-box{
        min-width: 100%;
    }
    .footer-subbox{
        justify-content: center;
        gap:10px;
    }
    .footer-subbox p{
        width:45%;
    }
    .footer-subbox div{
        width:45%;
    }
    footer ul{
        padding: 0px 10px;
        justify-content: center;
    }
}