@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(https://pic1.imgdb.cn/item/67cf273e066befcec6e288b0.png) no-repeat;
    background-size: cover;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 540px;
    height: 700px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    padding: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.box > img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
}

.box {
    width: 550px;
    flex-direction: column;
    align-items: start;
}

.box > a {
    text-decoration: none;
    color: rgb(100, 100, 100);
    width: 500px;
    font-size: 16px;
    text-align: end;
    outline: none;
    display: block;
}

.box {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box > button {
    outline: none;
    margin-top: 10px;
    display: block;
    font-size: 22px;
    border-radius: 7px;
    height: 43px;
    width: 430px;
    align-items: center;
    border: none;
    background-color: rgb(93, 147, 255);
    color: rgb(255, 255, 255);
}

.box > button:hover {
    background-color: rgb(29, 80, 182);
}

.foot {
    color: rgba(40, 40, 40, 0.5);
    padding: 5px;
    margin-top: auto;
}

::selection {
    color:rgb(240, 240, 240);
    background-color: rgb(40, 40, 40);
}