* {
    font-family: "MaplestoryOTFBold", sans-serif, serif;
    color: white;
    background-color: #000036;
}

body {
    width: 100vw;
    height: 100vh;
    display: grid;
}

.title {
    margin-top: 3vh;
}

.nbt-input {
    width: 70vw;
    height: 30vh;
    text-align: justify;
    vertical-align: text-top;
    border-radius: 5px;
    margin: 0 0 0 0;
}

.button-area {
    display: flex;
    align-items: center;
}

.btn {
    border-color: #000080;
    background-color: #000080;
    animation: button1;
    animation-duration: 0.5s;
    width: 10vw;
    height: 4vw;
    border-radius: 7px;
}

.btn:hover {
    animation: button;
    animation-duration: 0.5s;
    background-color: rgba(0, 0, 128, 0);
}

body * {
    margin-left: auto;
    margin-right: auto;
}

@font-face {
    font-family: 'MaplestoryOTFBold';
    src: url("../fonts/Maplestory Light.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes button {
    0% {
        background-color: rgba(0, 0, 128, 255);
    }

    100% {
        background-color: rgba(0, 0, 128, 0);
    }
}

@keyframes button1 {
    0% {
        background-color: rgba(0, 0, 128, 0);
    }

    100% {
        background-color: rgba(0, 0, 128, 255);
    }
}