@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    background-image: url("bg.webp");
    font-family: "Poppins";
    color: #ffffff3a;
}

.page {
    width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #25252550;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 50px #00000050;
}

.page .logo {
    margin: 0 auto;
}

.page .logo img {
    width: 300px;
}

.page hr {
    width: 100%;
    border: dashed 1px #505050;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page #game {
    width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.page #game:hover {
    scale: 102.5%;
    transform: skew(-2.5deg);
    filter: brightness(125%);
}

.page .bottom {
    margin-bottom: 10px;
}

.page .links {
    width: 100%;
    word-spacing: 23px;
}

.page a {
    color: #fff;
    text-decoration: none;
}

.page a:hover {
    color: #ff009d;
}

.page .info {
    width: 100%;
    color: white;
    text-align: center;
    font-size: 15.17px;
}

@media only screen and (max-width: 960px) {

}