@font-face {
    font-family: 'JeonjuCraftGoR';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/JeonjuCraftGoR.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@font-face {
    font-family: 'GangwonEduPowerExtraBoldA';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduPowerExtraBoldA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cafe24Ssurround';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24Ssurround.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0px;
}

a {
    text-decoration: none;
    color :white
    /* 텍스트 링크 밑줄 없애기 */
}

html {
    background: #000000;
}

.header {
    font-family: 'JeonjuCraftGoR';
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(206, 96, 169, 1);
    border-bottom: 1px solid #000000;
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
}


.header_logo img {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 12px 0px;
}

.header_menu {
    position: absolute;
    right: 10px;
    top: 20px;
}

input[id="menuicon"] {
    display: none;
}

input[id="menuicon"]+label {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

input[id="menuicon"]+label span {
    display: block;
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 30px;
    background: #000;
    transition: all .35s;
}

input[id="menuicon"]+label span:nth-child(1) {
    top: 2.5px;
}

input[id="menuicon"]+label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

input[id="menuicon"]+label span:nth-child(3) {
    bottom: 2.5px;
}

input[id="menuicon"]:checked+label span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

input[id="menuicon"]:checked+label span:nth-child(2) {
    opacity: 0;
}

input[id="menuicon"]:checked+label span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

div[class="sidebar"] {
    text-align: center;
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    z-index: 1;
    transition: all .35s;
    justify-content: center;
}

input[id="menuicon"]:checked+label+div {
    right: 0;
}

input[id="menuicon"]:checked+label {
    z-index: 2;
    right: 300px;

}

.sidebar h1{
    color : white;
    font-family: 'Pretendard-Regular';
    cursor : pointer;
}

.back img{
    position: fixed;
    left : 10px;
    top : 12px; 
}

/* 여기까지가 헤더 밑부턴 메인 */


.white {
    display: flex;
    background: #000000;
    width: 100%;
    height: 68px;
}

.youtube {
    width: 95%;
    height: 250px;
    display: flex;
    justify-content: center;
    background: #000000;
    border-radius: 0px;
    text-align: center;
    margin : auto;
    border: 4px solid #ce60a9;
}

.youtube iframe{
    padding : 10px;
}

.teamname{
    width: 95%;
    display: flex;
    justify-content: flex-start;
    background: #000000;
    border-radius: 30px;
    text-align: center;
    margin : auto;
    border: 4px solid #ce60a9;
    margin-top: 10px;
    flex-direction: column;
}

.teamname hr{
    width: 80%;
    color: white;
}

.teamname h1{
    align-items: center;
    color: white;
    margin : 0px;
    font-family: 'Cafe24Ssurround';
    font-size: 30px;
}

.teamname h3{
    color: white;
    align-items: center;
    font-family: 'Pretendard-Regular';
    font-size: 20px;
}

.teamname iframe{
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

