body {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgb(245, 245, 245);
    font-family: Noto Sans, Noto Sans SC, sans-serif;
}
@font-face {
    font-family: 'Minecraft R';
    src: url('../../fonts/1_Minecraft-Regular.otf');
}
@font-face {
    font-family: 'minecraft';
    src: url('../../fonts/5_Minecraft AE.ttf');
}
button{
    border: none;
}
.nav{
    display: flex;
    justify-content: center;
    position: fixed;
    backdrop-filter: blur(50px);
    width:100;
    height:60px;
    width: 100%;
    z-index: 2;
    background-color: rgb(255, 255, 255);
    -webkit-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}
a{
    text-decoration: none;
    color: black;
}
.nav-content{
    max-width: 1200px;
    width: 90%;
    height: 100%;
    position: fixed;
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    font-size: 100%;
}
.nav-left{
    display: flex;
    align-items: center;
    width: 10%;
    color: rgb(124, 124, 124);
}
.nav .logo{
    width: 130%;
}
.tag{
    font-size: 14px;
    padding: 0px 25px;
    -webkit-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}
.tag:hover{
    color:rgb(0, 0, 0)
}
.nav-right{
    display: flex;
    align-items: center;
    height: 100%;
}
.tag-list{
    height: 100%; 
    display: flex; 
    align-content: center; 
    align-items: center;
}
.tag-project{
    display: inline;
    height: 100%;
    display: flex; 
    align-content: center; 
    align-items: center;
}
.dropdown{
    display: none;
}
.dropdown-project{
    position: absolute;
    top: 53px;
    right:150px;
    z-index: 2;
    background-color: white;
    backdrop-filter: blur(50px);
    color: black;
    width: 180px;
    height: 104px;
    border: 1px solid rgba(218, 218, 218, 0.452);
    border-radius: 10px;
    display: none;
    box-shadow: 0 3px 5px 1px rgba(131, 131, 131, 0.082);
}
.tag-project:hover .dropdown-project{
    display: block;
}
.dropdown-project:hover{
    display: block;
}
.dropdown-project-tag{
    padding: 18px 20px;
    text-align: center;
    display: block;
    font-size: 14px;
}
.dropdown-project-tag:hover{
    background-color: rgba(138, 138, 138, 0.253);
}
.first-tag{border-top-left-radius: 10px; border-top-right-radius: 10px;}
.last-tag{border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;}
/*Main Section*/
.main{
    width: 80%;
    max-width: 1200px;
    min-height: calc(100vh - 240px);
    margin-top: 100px;
    margin-bottom: 70px;
}
.main-title-logo{
    height:60px;
    position: relative;
    bottom:-18px;
    margin-right: 8px;
}
.main-title-container{
    font-size: 27px;
    font-weight: bold;
}
.divider{
    width: 100%;
    height: 1px;
    background-color: rgba(163, 163, 163, 0.363);
    margin-top: 28px;
}
.main-content{
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}
.main-left{
    width: 68%;
}
.main-left-title{
    font-size: 21px;
    font-weight: 600;
    margin-left: 10px;
}
.project-container{
    margin-top: 30px;
}
.project{
    width: 100%;
    height:145px;
    border: 1px solid rgba(0, 0, 0, 0.212);
    border-radius: 12px;
    background-color: white;
    margin-bottom: 18px;
}
.project-content{
    margin: 26px 27px;
    position: relative;
    height: 95px;
}
.project-title{
    font-size: 18px;
    font-weight: bold;
    color:rgb(30, 103, 240);
    display: inline-block;
}
.project-status{
    display: inline-block;
    font-size: 12px;
    color:rgba(0, 0, 0, 0.514);
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.253);
    position: relative;
    bottom: 2px;
    margin-left: 4px;
}
.project-discription{
    font-size: 15px;
    margin-top: 8px;
}
.project-info{
    position:absolute;
    bottom:0;
    font-size: 14px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.479);
}
.project-info-dot{
    font-size: 18px;
    color: rgb(7, 196, 0);
    margin-right: 1px;
}
.main-right{
    width: 25%;
}
.main-right-title{
    font-size: 21px;
    font-weight: 600;
}
.main-right-about{
    font-size: 15px;
    line-height: 1.8;
    margin-top: 18px;
}
