*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
}

:root{
    /*컬러*/
    --main-color: rgb(247, 227, 238);
    --sub-color: rgb(213, 243, 239);
   
}








body{
    font-family:Arial, sans-serif;
    background:#c7f7e9;
}


header{
    text-align:left;
    padding:30px;
    color:#ff0ca6;
}


main{
    width:90%;
    max-width:1200px;
    margin:auto;
    background:white;
    border-radius:15px;
    overflow:hidden;
}


/* 메뉴 */

.menu{
    background:#f3018e;
    padding:15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.menu ul{
    display:flex;
    justify-content:left;
    gap:30px;
}


.menu a{
    color:white;
    font-weight:bold;
}


/*section*/
section{
    width: 100%;
    background-color: var(--main-color);
    padding: 1em 2em ;

}
section nav{}
section nav ul{
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}
section nav ul li a{
   display: block;
   color: var(--white-color);
   padding: 0.5em 1em;
   /*font-weight: bold;*/
   font-weight: 1.1em;
   background-color: var(--sub2-color);
   border-radius: 0.3em;
}
section nav ul li a:hover{
    background-color: var(--sub-color);

}
section nav ul li a:active{
    background-color: var(--accent-color);
}









.content{
    position:relative;
}


.content img{
    width:100%;
    height:400px;
    object-fit:cover;
}


.textbox{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:rgba(0,0,0,0.6);
    color:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
}


/* 카드 */

.cards{
    display:flex;
    gap:20px;
    padding:30px;
}


.cards article{
    flex:1;
    box-shadow:0 3px 10px #ccc;
    background-color: rgb(248, 246, 236);
    border-radius:10px;
    overflow:hidden;
}


.cards img{
    width:100%;
    height:200px;
    object-fit:cover;
}


.cards h2,
.cards p{
    padding:10px;
}


/* 공지 */

.notice{
    padding:30px;
}


.notice h2{
    margin-bottom:15px;
    font-size: 35px;
    text-align: center;
}





.heart{
    display:inline-block;
    color:#ffd6e7;
    font-size:22px;
    text-decoration:none;
    transition:transform 0.3s, color 0.3s;
}

.heart:hover{
    color:white;
    transform:scale(1.4);
}



.playlist{
    width:100%;
    padding:80px 0;
    text-align:center;
    /*background:#fff0f5;*/
    background-color:  rgb(247, 227, 238);
}

.playlist h2{
    font-size:35px;
    color:black;
    margin-bottom:40px;
}

.playlist-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    max-width:900px; 
    width:100%;
    margin:0 auto;
}
.album{
    width:210px;
    background:#fff;
    border-radius:20px;
    padding:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
    width:210px;
}

.album:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,.18);
}

.album img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:15px;
    transition:.3s;
}

.album img:hover{
    transform:scale(1.05);
}

.album h3{
    margin-top:15px;
    font-size:18px;
    color:#444;
}

.album p{
    color:#888;
    font-size:14px;
}
.container{
    width:100%;
}










.top-btn{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f8076c;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    transition: all .3s ease;
}

.top-btn.show{
    opacity: 1;
    visibility: visible;
}

.top-btn:hover{
    transform: scale(1.15);
    background: hotpink;
}















.to-be-continued{
    text-align:center;
    font-size:40px;
    margin:40px 0;
    width: 100%;
    background-color: white;
}



footer{
    text-align:center;
    padding:20px;
}

html{
    scroll-behavior: smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100%;
}








/* 모바일 */


@media(max-width:768px){

    .cards{
        flex-direction:column;
    }

    .menu ul{
        flex-direction:column;
        align-items:center;
    }

}

@media(max-width:800px){

    .playlist-container{
        width:100%;
    }

}

@media(max-width:500px){

    .playlist-container{
        width:100%;
    }

}

