@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

body {
    margin: 0;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.app {
    max-height: 100%;
    perspective: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    --scroll: 0;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

h1 {
    text-align: center;
    margin-top: 50px;
}

h2,h3 {
    margin-top: 50px;
}

h1,h2,h3,p {
    margin-left: 15px;
    margin-right: 15px;
}

main {
    height: 100%;
    color: rgb(0, 0, 0);
    width: 100%;
    background: #ffffff;
    line-break: auto;
}

@media screen and (max-width: 600px) {
    .ui-nav>.ui-center {
        flex-grow: none;
        flex-direction: column;
        gap: 1%;
    }
}


footer {
    color: white;
    align-items: center;
    width: 100%;
    background: #000000;
    top: 30px;
    text-decoration: underline;
    margin-bottom: 50px;
}

footer>a {
    color: white;
    display: flex;
    background: #000000;
    justify-content: center;
    margin-top: 35px;
}

@media only screen and (max-width: 600px)
{
    .ui-description {
        width: 100%;
    }

    .ui-heading {
        font-size: 2.5rem;
    }

    @keyframes modern-opacity {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
}