* {
    color: #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
    font-weight: 100;
    font-style: normal;
}
html{
    display: flex;
    justify-content: center;
    background-color: rgb(43, 43, 47);
}
body{
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    
}
.top-container{
    z-index: 1;
    width: 100%;
    padding: 10px 0 0 10px;

    display: flex;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    justify-content: center;
    align-items: center;
    background-color: #262630;
    border-radius: 0.5rem;
    flex-direction: column;
    
}
.main-container{
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    background-color: #2a2d39;
    padding: 30px;
    position: relative;
    top: -20px;
    width: 99%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.nav-bar{
    display: flex;
    
}
.nav-btn{
    padding:0px 30px 0px 30px;
    font-size: 20px;
    background-color: rgb(36, 41, 62);
    border-radius: 0.2rem;
}
.nav-btn.active{
    border-top: #b82424 2px solid;
    background-color: #333462;
}
.nav-btn:hover{
    background-color: #484852;
    
}
a{
    text-decoration: none;
}
.name-img{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prof-img{
    object-fit: cover;
    border: solid green 1px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    transition: .3s;
}
.prof-img:hover{
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    width: 110px;
    height: 110px;
}
.tab-cont{
    display: flex;
    padding: 30px;
}
.cont-img{
    border-radius: 0.5rem;
    width: 300px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.cont-info-text{
    padding: 10px;
}
.page-title{
    text-align: center;
}