body, h1, p, a {
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  height: 100vh;
  background-size:cover;
  background-image: url('bgd.webp');
  background-position: center top;
  background-repeat: no-repeat;

}    
.prof {
  width: 280px;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 5px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile {
  width: 85px;
  height: 85px;

  border-radius: 100%;

  border: 1px solid white;

  background-image: url('profile.png');
  background-repeat: no-repeat;
  background-size: 85px 85px;
  background-position: center;

}
.profile_name {
    color: white;
    font-size: 15px;
    size: 15px;

    margin-top: 10px;
    margin-bottom: 8px;
}
.profile_cmt {
    color: white;
    font-size: 15px; 
    margin-top: 0px;
    margin-bottom: 8px;
}
.tag {
    color: white;
    font-size: 15px;
    font-weight: 500;
    size: 15px;

    margin-top: 0px;
    margin-bottom: 5px;
}
.profile_tags {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 13px;
}
.wrap {
    width: 300px;
    margin: 10px auto 0px auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.big_btn > a {
    width: 280px;
    height: 35px;

    border-radius: 12px ;

    background: rgba(255, 255, 255, 0.0); 
    
    /* 블러 효과 유지 */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
    

    margin-bottom: 10px;

    font-size: 14px;
    /*
    font-weight: bold;
    */
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    border: 1px solid white;
}
.source {
    font-size: 13px;
    color: white;

    margin-top: 5px;
}

.big_btn > a:hover {
    background-color: white;
    color: #5b587b;
}
            
