@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none !important;
    color: black !important;
}

.page-header {
    text-align: right;
}

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

.text-row-title {
    font-size: 0.7em;
    float: left;
}

.text-large {
    font-size: 1.2em;
    text-align: right;
}

@media (max-width: 1000px) {
    main {
        margin-left: 0 !important;
        width: 100%;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .page-header {
        font-size: 0.8em;
        margin-top: 40px;
    }

}