* {
    box-sizing: border-box;
}

body {
    background: url(./images/bg.webp);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-repeat: round;
}

body > div:first-child {
    display: flex;
    align-items: center;
}

img {
    /*logo*/
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 1% 0 0 1%;
}

span {
    font-size: 25px;
    line-height: 25px;
}

#title {
    font-size: 80px;
    text-align: center;
    color: pink;
    margin: 10px auto 5px auto;
}

#subtitle {
    font-size: 25px;
    text-align: center;
    color: white;
    margin: 5px auto auto;
}

#btnArea {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto auto 80px;
}

#btnArea div {
    background-color: blue;
    text-align: center;
    font-size: 25px;
    color: white;
    border: 1px solid skyblue;
    margin: 3px;
    padding: 10px;
    cursor: pointer;
}

/* 平板设备样式 */
@media (max-width: 1024px) {
    #title {
        font-size: 65px;
    }
    
    #subtitle {
        font-size: 22px;
    }
    
    #btnArea div {
        font-size: 22px;
        padding: 9px;
    }
}

/* 中等平板设备样式 */
@media (max-width: 768px) {
    #title {
        font-size: 50px;
    }
    
    #subtitle {
        font-size: 20px;
    }
    
    span {
        font-size: 22px;
    }
    
    #btnArea {
        width: 80%;
    }
    
    #btnArea div {
        font-size: 20px;
        padding: 8px;
    }
}

/* 手机设备样式 */
@media (max-width: 480px) {
    #title {
        font-size: 50px;
    }
    
    #subtitle {
        font-size: 19px;
    }
    
    span {
        font-size: 20px;
    }
    
    img {
        width: 22px;
        height: 22px;
    }
    
    #btnArea {
        width: 85%;
    }
    
    #btnArea div {
        font-size: 18px;
        padding: 7px;
    }
}

/* 超小屏幕设备样式 */
@media (max-width: 320px) {
    #title {
        font-size: 32px;
    }
    
    #subtitle {
        font-size: 16px;
    }
    
    span {
        font-size: 18px;
    }
    
    img {
        width: 20px;
        height: 20px;
    }
    
    #btnArea {
        width: 90%;
    }
    
    #btnArea div {
        font-size: 16px;
        padding: 6px;
    }
}