*{
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: #1C2833;
    overflow: hidden;
    font-family: Arial;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.backButton{
    position: fixed;
    left: 15px;
    top: 10px;
    height: fit-content;
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    background: #2C3E50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.backButton:hover{
    background: #34495E;
}

button:hover{
    cursor: pointer;
}

.backButton img{
    height: 17px;
    width: 17px;
    margin-right: 4px;
    vertical-align: text-top;
}