*{
  font-family: "Intel One Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  color: #eeeeee;
  text-decoration: none;
  margin: 0px;
  padding: 0px;
}

body{
    box-sizing: border-box;
    background-color: #111213;

}

#content{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-self: center;
    width: 40%;
}

.title{
    font-size: 1.5em;
    padding-bottom: 1em;
}

.sub-title{
    font-size: 0.9rem;
    padding-bottom: 1em;
}

p{
    font-size: 0.9rem;
    padding-bottom: 1em;
}

.footer-link{
    color: green;
    transition: 0.2s ease-in;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.footer-link:hover{
    text-decoration: underline;
}

@media ( max-width: 768px){
    #content{
        width: 80%;
    }
}