
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');


body {
    font-family: "Paytone One", sans-serif;
    margin: 0;
    color: white;
    background-color: rgb(19, 19, 19);   
}

section {
    margin: 20px auto;
    width: 960px;
}


.logo {
    width: 700px;
    transition-duration: 0.3s;
}

.smallLogo {
    width: 200px;
    
}

.title {
    width: 100%;
    text-align: center;
    margin: 5vh auto 10vh auto;
    position: fixed;

}

.contents img {
    width: 100%;
}

.footer {
    margin-top: 100px;
    text-align: center;
}

.contents .smallImg {
    width: 660px;
}

.ghosted-h1 {
    width: 540px;
    margin: 80px auto 40px auto;

    font-size: 42px;
    line-height: 36px;
    font-family: 'Paytone One', sans-serif;
    color: #FBB216;
}

.ghosted-p {
    width: 540px;
    margin: 10px auto 100px auto;

    font-size: 28px;
    line-height: 36px;
    font-family: 'Paytone One', sans-serif;
}

strong {
    font-weight: normal;
}


.red { color: rgb(237, 21, 35); }
.yellow { color: rgb(241, 178, 22); }
.blue { color: rgb(0, 59, 224); }
.green { color: rgb(53, 174, 120); }
.purple { color: rgb(159, 40, 105); }
.orange { color: rgb(240, 88, 34); }

.slider {
    margin: auto;
    width: 960px;
    height: 540px;
}

.slide {
    position: absolute;
    background-size: contain;
    width: 960px;
    height: 540px;
    transition: 0.6s ease;
}

.dot-container {

    text-align: center;
    margin: 15px auto auto auto;
}

.item {
    width: 40%;
    margin: 10px;
    
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(85, 85, 85);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #c2c2c2;
  }

  .container  {
    display: flex;
    flex-wrap: wrap; /* 두 줄로 콘텐츠가 나누어질 수 있도록 설정 */
    justify-content: space-around; /* 콘텐츠를 가로 방향으로 space-around 정렬 */
    margin: auto auto 50px;
    padding: 5vw;

  }


@media screen and (max-width: 768px) 
{

    .link {
        width: 100%;
        font-size: 15px;
    }

    .logo {
        width: 100vw;
        transition-duration: 0.3s;
    }
    
    .ghosted-h1 {
        width: 80%;
        margin: 80px auto 40px 30px;
    
        font-size: 42px;
        line-height: 36px;
        font-family: 'Paytone One', sans-serif;
        color: #FBB216;
    }
    
    .item{
        margin: 10px;
    }

    .smallLogo {
        width: 40vw;
    }

    section {
        margin: 20px auto;
        width: 100vw;
    }



    .footer {
       font-size: 12px; 
        text-align: center;
    }

    .ghosted-p {

        width: 85vw;
        margin: 30px auto 100px auto;

        font-size: 28px;
        line-height: 36px;
        font-family: 'Noto Sans KR', sans-serif;
        font-weight: 700;
    }

    .youtubeWindow {
        width: 100vw;
    }

    .slider {
        margin: auto;
        width: 100vw;
        height: 56.25vw;
    }

    .slide {
        width: 100vw;
        height: 56.25vw;
    }

}