@font-face {
    font-family: 'GHEAGrapalat';
    src: url('../assets/fonts/GHEAGrpalatReg.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'GHEAGrapalat', Arial, sans-serif;
    background-color: #ddd;
    color: black;
}

/* Navbar */
.navbar {
    display: flex;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 48px;
    padding: 4px 4px 2px 4px;
    align-items: center;
    background-color: #f0f0f0;
    font-size: 18px;
}

.navbar-item {
    display: flex;
    height: 100%;
    padding: 0 10px;
    align-items: center;
    border-radius: 32px;
    color: black;
    text-align: center;
    text-decoration: none;
}

.navbar-item:hover {
    background-color: #aaaaaa;
}

.navbar-item-active {
    background-color: lightgray;
}

#navbar-logo {
    height: 48px;
    vertical-align: middle;
}

#navbar-logo:hover {}

/* Body */
.main {
    margin-top: 48px;
    margin-bottom: 48px;
    text-align: center;
}

.page-container {
    padding: 24px;
    justify-content: center;
    align-items: center;
}

.page-title-container {
    margin: 12px 0px;
}

.page-title {
    color: #2776bb;
    margin: 0;
}

.page-description-container {
    text-align: left;
    margin-bottom: 48px;
    padding: 0 48px;
    font-size: 18px;
}

.page-description {
    color: #636466;
    font-weight: bold;
}

.page-section-container {
    text-align: left;
    margin-bottom: 36px;
    padding: 0 48px;
    font-size: 18px;
}

.page-section-title {
    color: black;
    font-weight: bold;
}

.page-section-description-container {}

.page-section-description {
    color: #636466;
    margin: 4px 0px;
}

/* Footer */
#footer-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 16px;
}

#footer-copyrights-container {}

#footer-copyrights-text {
    margin: 10px;
    color: black;
}

#footer-copyrights-text-company {}

#footer-copyrights-text-rights-reserved {}

.footer-items {
    margin-bottom: 10px;
}

.footer-items-links {
    margin: 0 10px;
    padding: 5px 10px;
    color: #2776bb;
    text-decoration: none;
}

.footer-items-links:hover {
    background-color: lightgray;
    border-radius: 5px;
}

@media only screen and (max-width: 600px) {
    .navbar {
        font-size: 14px;
    }

    .page-section-container {
        padding: 0px 12px;
        margin-bottom: 16px;
    }

    .page-section-title {
        text-align: center;
        margin: 8px;
    }

    #footer-container {
        font-size: 14px;
    }
}