.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;
}


h1{
   font-family: 'Roboto', 'Nanum Gothic Coding', monospace;
   font-weight: 100;
   letter-spacing: 5px;
   font-size: clamp(1rem, 2.5vw, 2rem);
   margin: 2;
}

body{
    padding-top: 160px;
}

.imgContent{

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    gap: 15px;
  
    padding-bottom: 80px;
}

.imgContent img{
    width: 500px;
    max-width: 90%;
    height: auto;

    display: block;
}

.artInfo{
    text-align: center;

    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.backButton{
    display: inline-block;
    margin-top: 30px;
    padding: 10px 18px;

   

    text-decoration: none;
    color: black;
}

.backButton:hover{
    background-color: black;
    color: white;
}