html, body {
    margin: 0;
    background: #272a40;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #f5f5f5;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #FF4A57;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

h1, h2, h3 {
    font-weight: 500;
}

h2 {
    text-align: center;
    padding-top: 15px;
    margin-top: 0;
    font-size: calc(1.5em + 2vw)
}

h3 {
    font-size: calc(1.17em + 0.5vw);
    margin: 0;
}

h4 {
    margin-bottom: 0;
    color: #FF4A57;
}

p {
    font-weight: 400;
}