@font-face {
font-family: PT-Serif;
src: url(fonts/PTSerif-Regular.ttf);
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

h1 {
    color: slategrey;
    font-family: 'PT-Sans';
    font-size: 80px;
    margin: 70px auto 0 auto;
    text-align: center;
    font-weight: normal;
    padding-bottom: 10px;
}

h2 {
    color: #adadad;
    margin: -10px auto 100px auto;
    text-align: center;
    font-weight: normal;
    font-family: 'PT-Serif';
    font-size: 18px;
}

.intro-outer-container {
    width: 100%;
    background-color: slategrey;    
}

.intro-container {
    width: 100%;
    background-color: #eee;
    font-family: 'PT-Serif';
    padding: 30px 20px;
    color: black;
    position: relative;
    font-size: 15px;
    right: 5px;
    bottom: 20px;
    margin-bottom: 100px;
    line-height: 24px;
}

.links {
    display: flex;
    font-size: 15px;
    justify-content: center;
    padding-top: 20px;
}

a {
    font-weight: 600;
}

.links a {
    color: black;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
}

a:hover {
    text-decoration: underline !important;
}

.blog-seperator {
    display: flex;
    color: #adadad;
    align-items: center;
    margin-bottom: 25px;
}

.blog-seperator span {
    width: 220px;
    text-align: center;
    padding: 10px;
}

.blog-seperator hr {
    margin: 0;
    width: 100%;
    height: 1px;
    border-style: none;
    background-color: #adadad;
    opacity: 0.5;
}

.blog-outer-container {
    width: 100%;
    background-color: slategrey;
    margin-bottom: 80px;
}

.blog-container {
    width: 100%;
    font-family: 'PT-Serif';
    padding: 25px 20px;
    background-color: eee;
    position: relative;
    font-size: 15px;
    right: 5px;
    bottom: 20px;
}

.blog-head {
    font-family: 'PT-Sans';
    font-size: 40px;
    color: slategrey;
}

.blog-date {
    font-family: Helvetica, Arial, sans-serif;
    color: #adadad;
    margin-top: -5px;
}

.blog-intro {
    margin-top: 20px;
}

.blog-intro p {
    margin: 8px 10px;
    line-height: 24px;
}

.blog-container a {
    text-decoration: none;
    padding: 20px 10px;
    display: block;
    color: black;
    font-size: 16px;
}



@media only screen and (max-width: 580px) {
    h1 {
      font-size: 60px;      
    }

    .links {
        font-size: 14px;
    }

    .blog-head {
        font-size: 45px;
    }

    .blog-seperator span {
        width: 280px;
    }
  }