body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

INPUT {
    color: #ffffff;
    height: 20px;
    background-color: #000000;
    border-width: 1px;
    border-color: #AAAAAA;
    border-style: solid;
}

TEXTAREA {
    font-family: "Noto", sans-serif;
    font-size: 9pt;
    color: #777777;
    background-color: #EEF1F1;
    border-width: 1px;
    border-color: #AAAAAA;
    border-style: solid;
}

.text-white {
    font-family: "Noto", sans-serif;
    font-size: 9pt;
    color: #ffffff;
}

.text-black {
    font-family: "Noto", sans-serif;
    font-size: 9pt;
    color: #000000;
}

a {
    font-size: 9pt;
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.button-container {
    display: none;
    /* 기본적으로 숨김 */
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
}

.glass-button {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

@media screen and (min-width: 2000px){
    .button-container {
        display: flex !important;
        opacity: 100;
    }
}


#bg-video {
    position: fixed;
    /* 화면 고정 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    /* 비디오가 화면 전체를 덮도록 */
    z-index: -1;
    /* 다른 요소 뒤에 배치 */
}

a:link,
a:hover,
a:active,
a:visited {
    text-decoration: none;
    color: black;
}

a:visited:hover {
    color: red;
}

a:visited:active {
    color: black;
}

.f1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 9pt;
    color: red;
}

.input2 {
    border: none;
    font-family: "Noto", sans-serif;
    font-size: 9pt;
    color: black;
    background-color: black;
    height: 19px;
}

