@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}


.main__wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.main__wrap .logo-img {
    height: auto;
    display: flex;
    justify-content: space-between;
}

.scroll-down {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 50px;
    z-index: 900;
    animation: scroll_down 0.5s linear alternate infinite;
}

/* 화살표아래 */

@keyframes scroll_down {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-10px)
    }
}

#information__header {
    display: flex;
    align-items: center;
    background-color: black;
    padding-top: 1rem;
}


#information__header #information {
    position: relative;
    width: 85%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    border-top: 1.5px solid #fff;
    border-bottom: 1.5px solid #ffff;
}

.information-wrap {
    color: #fff;
    padding: 10px;
    font-size: 20px;

}

#information .left {
    position: absolute;
    left: 0;
}

#information .center {
    position: static;
}

#information .right {
    position: absolute;
    right: 0;
}

#information .right::before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -10px;
    bottom: 16px;
    color: rgb(173, 255, 148);
    background-color: rgb(173, 255, 148);
}

.popup__image {
    max-width: 100%;
    max-height: 90%;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}

.popup2 {
    display: none;
    position: fixed;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    z-index: 9999;

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.overlay2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}