.header{
    display: flex;
    align-items: center;
    padding: 0px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);

    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    border-bottom-width: thin;

    transition: transform 0.3s ease;
}

.header.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.topNav{
    display: flex;
    gap: 100px;
    margin-left: 300px;
}

.topNav a{
    text-decoration: none;
    color: black;
    font-weight: 100;
}

.content{
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 60px;
}

body{
    padding-top: 120px;
}

h1{
   font-family: 'Roboto', 'Nanum Gothic Coding', monospace;
   font-weight: 100;
   letter-spacing: 5px;
   font-size: clamp(1rem, 2.5vw, 2rem);
   margin: 2;
}

.bio{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;

    font-size: 18px;
    line-height: 1.6;
    padding: 0px 30px;
    max-width: 800px;

    margin: 0 auto;
}

.bioText{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bioInfo{

    line-height: 1.8;
}

.bioImage img{

    width: 200px;
    height: auto;

    margin-top: 40px;
}


.statement, 
.cv,
.contact{
    width: 100%;
    padding: 0px 30px;

    font-size: 18px;
    line-height: 1.6;
}

.statement{
    font-size: 18px;
    line-height: 1.6;

    padding: 0px 30px;
    max-width: 800px;
}

.cv{
    font-size: 18px;
    line-height: 1.6;
    padding: 0px 30px;
    max-width: 800px;   
}

.exInfo{
    line-height: 1.8;
}



.honInfo{
    line-height: 1.8;
}



.contact{
    font-family: 'Roboto', 'Nanum Gothic Coding', monospace;
    font-weight: 900;
    font-size: 35px;
    letter-spacing: 5px;
    padding-left: 30px;
    font-weight: 100;
    margin-bottom: 10px;
}

.info{

    margin-top: 0px;
    margin-bottom: 5px;

    padding-left: 60px;
    font-size: 25px;

}

.insta img{
    width: 40px;
    height: 40px;
    padding-top: 0;
    margin-left: 55px;
}

