body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    
    user-select: none;
    overscroll-behavior-y: contain;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input {
    -webkit-user-select: text;
    -webkit-touch-callout: none;
}

button, a {
    font-family: 'Inter', sans-serif !important;
    touch-action: manipulation;

    -webkit-tap-highlight-color: transparent;
}

p {
    font-family: 'Inter', sans-serif !important;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.nowrap {
    white-space: nowrap;
}

.back-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
    margin-left: 2px;
    background: #ffffff;
    border: 0;
    transition: transform 0.1s ease, background 0.2s ease;
    touch-action: manipulation;

    img {
        width: 32px;
        height: 32px;
    }
}

.back-button:active {
    transform: scale(0.99);
}

.screen {
    display: flex;
    flex-direction: column;
    height: 100dvh;

    .content {
        flex: 1;
    }
}

.header {
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.description {
    margin-top: 10px;
}

.content {
    margin: 0 16px;
}