@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    font-family: "Stack Sans Headline", sans-serif;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.displayed-title {
    font-size: 55px;
    color: #333333;
}

.displayed-subtitle {
    font-size: 15px;
    color: #333333;
}

.displayed-title span {
    color: #ffb23a;
}

.displayed-subtitle span {
    color: #ffb23a;
}

.user-uuid {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 11px;
    color: #111111;
}

.buttons-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    bottom: 30%;
    transform: translateY(-15%);
}

.button-default {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 250px;
    background: #f3f3f3;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    margin-top: 15px;
    cursor: pointer;
    color: #6b6b6b;
}

.button-matchmaking {
    background: #ffd390;
    color: #5f3900;
}

.loader {
    width: 8px;
    padding: 3px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #7f4d00;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
    position: absolute;
    right: 10px;
    transition: all .3s ease;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.hiding {
    opacity: 0;
}