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

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

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
}



:root {
    --black-color: #000;
    --pink-color: #F06AA7;
    --main-font: 'GmarketSansMedium';
}

.container {
    display: flex;
}

#main {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    align-items: center;
}

h1 {
    margin: 7vh 0 0 0 ;
    font-family: 'RixInooAriDuriR';
    font-size: 7rem;
    font-weight: 900;
    color: #FFF;
    -webkit-text-stroke: #F06AA7 2px;
    text-shadow: 10px 10px 0px #F06AA7;
}

.img-wrap {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10vh 0 10vh ;
}

.img-wrap > img {
    width: 20%;
}

.credit-button,
.start-button {
    width: 30vw;
    height: 8vh;
    outline: none;
    border: 1px solid;
    border-color: var(--pink-color);
    border-radius: 30px;
    background: var(--pink-color);
    font-family: var(--main-font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.start -button:hover {
    width: 30vw;
    height: 10vh;
    outline: none;
    border: 1px solid;
    border-color: var(--pink-color);
    border-radius: 30px;
    background: var(--pink-color);
    font-family: var(--main-font);
    font-size: 3rem;
    font-weight: 700;
    color: #FFF;
}

.start-button:active {
    transform: translateY(-30%);
}

.credit-button {
    width: auto;
    background-color: #fff;
    color: var(--pink-color);
    border: none;
    font-size: 1.5rem;
}