
html {
    margin: 0;
}
body {
    margin: 0;
    background-color: black
}
main {
    width: 1200px;
}
/*-------- PAGE FOOTER --------------------------------------*/
footer {
    background-color: #000000;
    padding: 30px;
    text-align: center;
}
#footlogo img {
    width: 300px;
    padding: 20px;
}
footer a {
    color: white;
    text-decoration: none;
}
footer #socials img {
    width: 30px;
    padding: 30px;
}
/*-----GROW EFFECT-------------------------------------------*/
.grow { 
    transition: all .15s ease-in-out; 
}
.grow:hover { 
    transform: scale(1.1); 
}
.growbig { 
    transition: all .15s ease-in-out; 
}
.growbig:hover { 
    transform: scale(1.5); 
}