*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --text-color: rgb(200 200 200);
}
h1, p, footer{
    font-family: "Nunito Sans", sans-serif;
    color: var(--text-color);
    text-align: center;
}
h1{
    font-size: 70px;
}
h2{
    font-family: "Nunito Sans", sans-serif;
    color: rgb(150 150 150);
    text-align: center;
    font-size: 40px;
}
p{
    font-size: 18px;
    margin: 10px;
}
p.link{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 200;
    text-align: center;
    color: var(--text-color);
    font-size: 18px;
}
.links{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 200;
    text-align: center;
    color: var(--text-color);
    font-size: 18px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.link{
    background-color: rgb(50 50 50);
}
a.link{
    border: 2px solid rgb(150 150 150);
    padding: 10px 0px;
    margin: 5px;
    height: 200px;
    width: 200px;
    display: flexbox;
    text-decoration: none;
}
.icon{
    width: 100px;
}
body{
    background-color: rgb(100 100 100);
    text-decoration: none;
}
main{
    margin-top: 10px;
    margin-bottom: 50px;
}
footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(50 50 50);
    padding: 5px;
}
a.footer:link, a.footer:visited{
    text-decoration: none;
    color: var(--text-color);
}
@media screen and (max-width: 700px){
    h1{font-size: 40px;}
    h2{font-size: 25px;}
    p, li{font-size: 14px;}
    p.link{font-size: 14px;}
    .icon{width: 75px;}
    a.link{height: 150px; width: 160px;}
}