* {
    box-sizing: border-box;
}


@font-face {
    font-family: 'DGM';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    display: block;
    flex-direction: column;
    background-image: url("../img/test_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.team {
    font-family: 'DGM', sans-serif;
    position: fixed;
    bottom: 20vh;
    left: 15vw;
    object-fit: cover;
    font-size: 40px;
    font-weight: 600;
    color: rgb(252, 228, 255);
    z-index: 2;
    text-shadow: 0 6px 15px rgba(255, 146, 226, 0.75);
}

.buttons {
    flex: 1; /* 버튼 컨테이너가 남은 공간을 차지 */
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    text-align: center;
}

.btn-hover {
    width: 55vw;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-3 {
    height: 6vh;
    z-index: 2;
    position: fixed;
    top: 45vh;
    left: 21vw;
    background-image: linear-gradient(to right, #ea66d4, #da4ac2, #f174e9, #d62bcd);
    box-shadow: 0 4px 15px 0 rgba(219, 82, 182, 0.75);
}