@font-face {
    font-family: "new";
    src: url(Serlby.ttf);
}
body{
    background-color: black;
    margin: 0;
    font-family: 'new';
}
.body{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    gap: 1vh;
    flex-wrap: wrap;
    user-select: none;
}
.container{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    gap: 2vh;
}
h1{
    color: white;
    font-size: 5vh;
}

/*Back Button*/
span{
    background-color: white;
    cursor: pointer;
    padding: 1vh;
    font-size: 3vh;
    border-radius: 2vh;
    user-select: none;
    border: .5vh white solid;
}
span:hover{
    background-color: black;
    color: white;
}
.back{
    position: absolute;
    bottom: 2vh;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    height: fit-content;
    display: flex;
    z-index: 999;
}
