body {
    font-family: 'Bebas Nueve', 'Noto Sans KR', sans-serif, 'Poppins';
    font-size: 17px;
    line-height: 1.6;
}

.button {
    display: inline-block;
    text-decoration: none;
    padding: 12px 34px;
    position: relative;
    cursor: pointer;
    border: 1px solid #2f56a5;
    background: transparent;
    color: #2f56a5;
    font-size: 30px;
    font-weight: 700;
    transition: 0.5s;
    font-family: 'Poppins';
}

    .button:hover {
        color: #e2f0fb;
        background: #2f56a5;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #e2f0fb;
    margin: 20% auto;
    width: 70%;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
    animation-name: modalopen;
    animation-duration: 1s;
    color: #232323;
}

.modal-header h2, .modal-footer h3 {
    margin: 0;
}

.modal-header {
    background: #2f56a5;
    padding: 15px;
    color: #fff;
}

.modal-body {
    padding: 10px 20px;
}

.modal-footer {
    background: #2f56a5;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.closeBtn {
    color: #fff;
    float: right;
    font-size: 30px;
}

    .closeBtn:hover, .closeBtn:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.submit {
    background: #e2f0fb;
    font-size: 12px;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Poppins';
}

input {
    color: #000;
}


@keyframes modalopen {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}
