* {
  box-sizing: border-box;
}


html {
    margin: 0px auto;
    color: #101010;
    font-family: monospace;
}

body {
    margin: 0px auto;
    background-color:  #212121;
}
h1{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #FAF9F6;
}
h2{
    color: #E9E4D7;
}
p{
    font-weight: bold;
}
.logoimg {
    height: 5rem; 
    width: 10rem;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    background-color: #090909;
    padding-top: 1%;
    padding-bottom: 1%;
}

.site{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.container{
    padding-top: 3%;
    display: flex;
    flex-direction: column;
}
.container a:link{
    color:black;
    text-decoration: none;
}
.container a:visited{
    text-decoration: none;

}
.container a:hover{
    text-decoration: underline;
}

.linkscont {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-bottom: 10%;
    padding-top: 7%;
}


.links{
    border: 2px solid #FAF9F6;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: larger;
    text-align: center;
    transition: transform 750ms;
}


.links:hover{
    transform: scale(1.25);
    transition: all 300ms ease-in-out;
}
.pfp img{
    border-radius: 1%;
}

.links p{
    color: #E9E4D7;
}

.timeto{
    color: #B22222;
    margin: 1vh;
    font-size: 100%;
    font-weight: lighter;
}
.cdtimecont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.footer{
    background:#000;
    padding:1% 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.3% 0%;
    color:gray;
    font-size:0.8em;
    }
    
    .footer .row a{
    text-decoration:none;
    color: gray;
    font-size: medium;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color:white;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    @media (max-width:1020px){
    .footer{
    text-align:left;
    padding:3%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }
    .ffot{
        font-size: medium;
    }

    @media only screen and (max-width: 600px) {

        .logoimg{
            height: 1.5rem;
          width: 3rem;
        }
        h1 {
            font-size: medium;
        }
      }