#body {
    min-height:95vh;
    min-width:95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans KR', sans-serif;
}
#body > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

text {
    font-family: 'Noto Sans KR', sans-serif;

}

#launch-button {
    cursor:pointer;
    user-select: none;

    -moz-user-select: none;
    -webkit-user-select: none;

}

#launch-button #Rectangle_1 {
    transition: all;
    transition-duration: 200ms;
    fill:#FFF;
}
#launch-button:hover  #Rectangle_1 {
    fill:rgba(19, 124, 189, 0.15);
}
#launch-button:active  #Rectangle_1 {
    fill:rgba(19, 124, 189, 0.3);
}
#blog-button {
    margin-top:10px;
    padding:10px 20px 7px 20px;
    border-radius: 5px;
    transition: all;
    transition-duration: 200ms;
    background:#FFF;
    cursor:pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
#blog-button:hover {
    background:#F5F8FA;

}
#blog-button:active{
    background:#EBF1F5;

}