@charset "UTF-8";

/* CSS Document */

/** google font IBM Plex Sans KR */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&display=swap');

@import url('https://cdn.jsdelivr.net/gh/toss/tossface/dist/tossface.css');

body {
    margin: 0;
    padding: 0;
    font-family: 'Tossface', sans-serif;
    background-color: lightseagreen;
}

img {
    border-radius: 20px;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin: 50px;
}

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40vw;
    height: 50vh;
    transform: translate(-50%, -50%);
    display: flex;
    background-color: white;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.btn__wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.btn {
    color: #fff;
    font-size: 15vh;
}