*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    list-style: none;
    text-decoration: none;

}

/* CSS element whose behaviour is defined by us*/

/*CSS for the blog page*/
body{
    background-color: white;
    /* background-color: #FFFFF0; */
    font-feature-settings: "kern" 1;
    font-kerning: normal;
    display: block;
    min-height: 100vh;
}

.page_content{
    padding: 30px 0;
    flex: 1;
    margin-right: 200px;
    margin-left: 200px;
}

section{
    display: block;
}

.wrapper {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 100px 100%;
    padding-left: 100px 100%;
}


.post {
    margin-bottom: 2em;
}

.post_title{
    margin-top: 0;

}

.post_subsection{
    margin-top: 0;

}

/* New footer */

footer{
    /* font-family: 'Noto Sans JP', sans-serif; */
    font-family: 'Orbit', sans-serif;
    background-color: white;
    /* background-color: #FFFFF0; */
    position: sticky;
    /* border-top: black 1px solid; */
    height: 80px;
    top: 100%;
}

.container {
    width: 100%;
    padding-top: 30px;
}

div.row {
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
}

div.col-3 {
    width: 33.33%;
    text-align: center;
}
/* New footer */


h1{
    text-align: center;
    font-family: 'Orbit', sans-serif;
    padding-bottom: 10px;
}

h2{
    text-align: 'left';
    font-family: 'Orbit', sans-serif;
    padding-bottom: 10px;
}

h3{
    text-align: 'left';
    font-family: 'Orbit', sans-serif;
    padding-bottom: 10px;
}

h4{
    text-align: 'left';
    font-family: 'Orbit', sans-serif;
    padding-bottom: 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }


@media (max-width: 800px){
    .page_content{
        margin-left: 10px;
        margin-right: 10px;
    }
    /*stops extra whitespace when under 800px*/
    html, body{
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
      }
}


.text{
    margin-bottom: 15px;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Orbit', sans-serif;
    font-size: 15px;
    color: #111;
    line-height: 2;
}

.post_title p{
    color: #111;
    /* font-family: 'Noto Sans JP', sans-serif; */
    font-family: 'Orbit', sans-serif;
    font-size: 42px;
    letter-spacing: -1;
    border-bottom: 2px solid transparent;
}

.my-post-list-heading{
    font-family: 'Orbit', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.post_title a:hover{
    border-bottom: 2px solid;
}

.post-date {
    display: block;
    margin-top: -.5rem;
    margin-bottom: 1rem;
    color: #9a9a9a;
    font-family: 'Orbit', sans-serif;
    /* font: 20px Arial; */
    }


/*standard css for the website*/
header{
    position: relative;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: transparent;
    /* background-color:  rgb(84, 84, 84); */
    background-color: white;
    /* background-color: #FFFFF0; */
    /* border-bottom: 1px solid black; */
    font-family: 'Orbit', sans-serif;
    /* font-family: 'Noto Sans JP', sans-serif; */
    
}

.navlist{
    display: flex;
}

.logo{
    font-size: 30px;
    font-weight: 700;
    /* color:white; */
    color: black;
}

.navlist a{
    /* color: white; */
    color: black;
    margin-left: 60px;
    margin-right: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    /*transition: all .55s ease;*/

}

.navlist a:hover{
    border-bottom: 2px solid;
}

#menu-icon {
    /* color: white; */
    color: black;
    font-size: 35px;
    z-index: 10000;
    cursor: pointer;
    display: none;
}

.info{
    color: white;
    position: relative;
    padding: 25% 9%;
    /*margin-left: 131px;*/
}

a.social_icon {
    background: none;
    color: black;
}

a.social_icon:hover{
    color:#fc916c;
}

@media (max-width: 1535px){
    header{
        padding: 15px 3%;
        transition: .2s;
    }

}

@media (max-width: 1350px){
    section{
        padding:0 12%;
        transition: .2s;
    }
}

@media (max-width: 1195px){
    section{
        padding:0 3%;
        transition: .2s;
    }
}

@media (max-width: 900px){
    html, body{
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    #menu-icon {
        display: block;
    }

    .navlist{
        position: absolute;
        top: 100%;
        right:-100%;
        font-weight: 200;
        width: 210px;
        height: 40vh;
        /* background: rgb(125, 125, 125); */
        background: white;
        /* background: #FFFFF0; */
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 10px 10px;
        transition: all .55 ease;
    }


    .navlist a{
        font-weight: 200;
        margin-left: 0;
        display: block;
        margin: 10px 0;
    }
    .navlist.open{
        right:0;
    }
}

@media (max-width: 800px){
    .navlist{
        height: 240px;
    }

}

@media (max-width: 680px){

    .logo{
        font-size: 20px;
    }

    .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    footer{
        height: 150px;
        margin-top: 0px;
    } 

    div.col-3{
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 350px){

    .navlist{
        height: 270px;
    }

}