body {
    overflow-y: scroll;
    font-size: 18px !important;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background-color: #444;
}

body::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 12px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #565;
}



button {
    cursor: pointer;
    border: 1.34px solid transparent;
    border-radius: 3px;
    transition: border-color 0.2s;
    padding: 16px;
}

button:hover {
    border-color: rgb(21, 220, 255);
}



p {
    padding: 1rem 0;
    margin: 0;
    line-height: 1.5;
    max-width: 45dvw;
}

@media screen and (max-width: 768px) {
    p {
        max-width: 90dvw;
    }
}



dialog {
    border: none;
    outline: none;
    border-radius: 12px;
    min-width: 16dvw;
    min-height: 32dvh;
    box-shadow: #fff 0 0 12px;
}