﻿html {
    font-size: inherit;
    color: inherit;
    scroll-behavior: smooth;
}

body {
}

.Page {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

    .Page.Active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .Page.hidden {
        display: none;
    }
