/* font */
@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap');

@import "reset.css";

/* components */
@import "components/nav.css";


/* screens */
@import "screens/index-header.css";
@import "screens/main-screen.css";


body {
    height: 100vh;
    background-image: url("../img/배경최종.webp");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Gowun Batang', serif;
}

.carousel-control-prev {
    position: fixed !important;
    left: 0 !important;
}

.carousel-control-next {
    position: fixed !important;
    right: 0 !important;
}

.artworks {
    margin-top: 60px;
}

.artwork {
    width: 100%;
    height: 100%;
    margin-bottom: 80px;
    position: relative;
}

.artwork__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

.artwork__img:hover {
    cursor: pointer;
}

#up_button {
    display: block;
    text-align: center;
}

.tooltip {
    width: 50%;
    height: 8%;
    background-color: black;
    opacity: 0.5;
    border-radius: 5px;
    position: absolute;
    left: 20%;
    bottom: 10%;
    color: white;
    text-align: center;
    padding: 10px;
    line-height: 1;
    transition: all 0.5s;
}

.hidden {
    opacity: 0;
}

.long-text {
    margin-top: 10px;
    line-height: 1.2;
    text-align: left;
}

.header__contents-img {
    position: relative;
}

.noti__img {
    position: absolute;
    top: 0;
    left: 0;
}

.cover-img:hover {
    cursor: pointer;
}