html{
    display: block;

}
body{
    /* margin:8px; */
    display: block;
    background-color: white;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

orange{
    color: #F39422;
    font-weight: bold;
}

blue{
    color: #23689B;
}

a, u {
    text-decoration: underline;
    color: black;
    font-weight: 500;
    border-radius: 3px;
}
/* NAVBAR */
#navbar-container{
    height: 4.5vmax;
    background-color: #23689B;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    display: flex;
    flex-direction: row;
    /* margin-left:22%;
    margin-right:22%; */
}

#navbar-container a{
    color: white;
    text-decoration: none;
}

#navbar-container a:hover{
    color:#F39422;
}
#top-name{
    padding-left: 20px;
    font-size: 1.75vmax;
    justify-self: flex-start;
    align-self: center;
    width: 50%;
    text-decoration: none;

    
}


#inner-buttons{
    display: flex;
    flex-direction: row;
    align-self: center;
    width: 50%;
    justify-content: flex-end;
    text-decoration: none;
}

.button{
    justify-self: flex-end;
    padding-right: 20px;
    font-size: 1.25vmax;
}

.main-column{
    /* width: 95%; */
    max-width: 1000px;
    /* min-width: 725px; */
    margin: auto;
    align-items: center;
    font-size: 1.25vmax;
}

#container{
    /* margin-left: 22%;
    margin-right: 22%; */
    width:90%;
    margin: auto;
    overflow-x:hidden;
}
/* ABOUT ME */

#introduction{
    display: flex;
    flex-direction: row;
    width:inherit;
}

#mypic{
    justify-self: flex-start;
    width: 40%;
    margin-top:5px;
}

#mypic img{
    margin-left: 5%;
    margin-right: 15%;
    margin-bottom:5px;
    padding-bottom: 5px;
    width:80%;
    border-radius: 2px;
}

#personalinfo{
    line-height: 150%;
    justify-self: flex-start;
    text-align: start;
    margin-top: 30px;
}

#personalinfo-links a, u{
    color: white;
    text-decoration: none;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #F39422;
}

#personalinfo-links a:hover{
    color: white;
    text-decoration: none;
    background-color: #f39522a1;
}

#longertext{
    margin-top: 15px;
}

.endline hr{
    margin-top: 20px;
    border-width: 1px;
}

.section{
    margin-top: 10px;
    width:100%;
}

.sectiontitle{
    text-align: center;
    color: #3C8DAD;
    font-weight:bolder;
    font-size:1.75vmax;
    margin-bottom: 5px;
}

ul li span{
    display: inline-block;  
    vertical-align: middle;     
}

ul li:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;     
}

li{
    list-style: square;
    padding-left: 0;
    margin-bottom: 15px;
}

/* footer */
.footer{
    background-color: #23689B;
    color: white;
    height: 4.5vmax;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1vmax;

}


        





