:root {
    touch-action: pan-x pan-y;
}

*, ::after, ::before {
    user-select: none;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #fafafa;
}

body {
    display: flex;
}

.page-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #ffcd00;
}

.page-content {
    align-items: center;
    display: flex;
    flex-flow: column;
    gap: 20px;
    background: white;
    height: fit-content;
    border-radius: 40px;
    padding: 50px 20px;
    margin: 50px;
}

.page-content div {
    max-width: 500px;
    text-align: center;
}

.open-app-btn {
    border: none;
    align-self: center;
    border-radius: 2px;
    background: #ffcd00;
    justify-content: center;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.07);
    color: rgb(30, 30, 30);
    padding: 11px 0;
    font-size: 20px;
    font-family: 'BebasNeueBold';
    width: 150px;
}

#message-modal .modal-content {
    background-color: #FFCD00;
}

#loader {
    z-index: 999999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
