body {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;
    background-image: url(images/background.png);
    background-size: cover;
    color: rgb(214, 214, 214);
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: rgb(111, 152, 188);
    border-radius: 8px;
}
ul li {
    float: left;
    margin: auto;
    width: 25%;
}
ul li a {
    display: block;
    padding: 14px;
    color: black;
    text-align: center;
    text-decoration: none;
}
ul li a:hover {
    color:rgb(10, 213, 64);
}
.logo {
    max-width: 500px;
}
.logo:hover {
    transform: scale(1.1);
    transition: transform .2s;
}
h1 {
    font-size: 40px;
}
p {
    font-size: 20px;
}
.smallText {
    font-size: 10px;
}
.squares {
    float: left;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
}
.squares img {
    max-width: 200px;
}
.squares:hover {
    transform: scale(1.1);
    transition: transform .2s;
}
img {
    width: 100%;
    height: auto;
    border-radius: 5%;
}
.coolText {
    margin: auto;
    background-image: url(images/artists/coingamer.jpg);
    border-radius: 10px;
    max-width: 800px;
    color: black;
}
.socials {
    display: flex;
    margin: auto;
    max-width: 400px;
    height: auto;
}
.socials a img:hover {
    transform: scale(1.1);
    transition: transform .2s;
}
h2 {
    font-size: 12px;
    padding: 0;
    margin-bottom: 0;
    color: rgb(246, 191, 191);
    text-shadow: 2px 2px 2px black;
}
.clear {
    clear: left;
}
@media screen and (max-width: 1050x) {
    .squares {
        max-width: 200px;

    }
    section {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    .squares {
        max-width: 185px;
    }
}