@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@font-face {
    font-family: "Wen Yue";
    src: url('fonts/WebYue.otf');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
*::selection{
    background-color: #dcecff;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6990F2;
    min-height: 86vh;
}
#body{
    background-color: #fff;
    padding: 30px;
    margin-top: 6%;
    border-radius: 7px 7px 0 0;
}
#title{
    color: #6990F2;
    font-size: 34px;
    font-weight: 600;
    text-align: center;
}
#title span{
    cursor: pointer;
    user-select: none;
}
#main{
    height: 390px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6990F2;
    font-size: 30px;
    font-family: "Wen Yue";
    text-align: center;
}
footer{
    text-align: center;
    padding: 0%;
    font-family: "Poppins";
    color: #6990F2;
}
@media (max-width: 1200px){
    #body{
        padding: 14%;
        margin-top: 6%;
        border-radius: 4px;
        font-size: 30px;
    }
    #title{
        font-size: 40px;
    }
    #main{
        font-size: 55px;
    }
}