html, body { margin: 0; padding: 0; }

body { font-family: sans-serif; display: flex; flex-direction: column; max-height: 100vh; height: 100vh; line-height: 1.45; }

body .content { display: flex; flex-direction: column; overflow: auto; overflow-x: hidden; }

body main { flex-basis: 100vh; flex-grow: 1; }

.container { max-width: 1024px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; }

body { overflow: hidden; }

.navigation-bar { box-sizing: border-box; box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); }

.navigation-bar .menu-button { display: none; }

.navigation-bar ul { list-style: none; box-sizing: border-box; margin: 0; padding: 0; }

.navigation-bar a { color: black; text-decoration: none; font-size: 16px; font-weight: bold; }

.navigation-bar .logo { display: flex; min-width: 300px; align-items: center; height: 60px; }

.navigation-bar .logo img { width: 60px; height: 60px; margin: 0px 18px; }

.navigation-bar .logo div:first-line { font-size: 1.1em; line-height: 1.1em; font-weight: bold; }

@media (max-width: 992px) { .navigation-bar { background: white; width: 100vw; padding: 8px; } .navigation-bar .menu-button { display: block; position: absolute; border: 0; border-radius: 6px; background: url("menu.svg"); background-size: cover; top: 12px; right: 16px; width: 36px; height: 36px; } .navigation-bar .menu-button:hover, .navigation-bar .menu-button:focus { box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); } .navigation-bar .menu-button:active { box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); } .navigation-bar ul { position: relative; height: 100vh; left: 0; right: 0; top: 0; background: white; max-height: 0px; transition: max-height 400ms ease-in-out; overflow: hidden; } .navigation-bar ul li:first-child { margin-top: 32px; } .navigation-bar ul li { padding: 16px; } .navigation-bar.expanded ul { max-height: 100vh; overflow: hidden; } .navigation-bar .logo img { width: 40px; height: 40px; margin: 0px 12px; } }

@media (min-width: 992px) { .navigation-bar { padding: 16px; display: flex; justify-content: space-between; align-items: center; } .navigation-bar ul { padding: 0; margin: 0; display: flex; } .navigation-bar ul li { display: block; padding: 8px 12px; margin: 4px; } }

@media (max-width: 992px) { h1 { font-size: 1.35rem; font-weight: bold; margin-bottom: 1.35rem; line-height: 2.4rem; } h2 { font-size: 1.2rem; font-weight: bold; margin-bottom: 1.2rem; line-height: 2.2rem; } h3 { font-size: 1.1rem; font-weight: bold; margin-bottom: 1.1rem; line-height: 2.0rem; } h4 { font-size: 1.1rem; margin-bottom: 1.1rem; font-style: italic; font-weight: lighter; line-height: 1.8rem; } h5 { font-size: 1.0rem; font-style: italic; font-weight: lighter; margin-bottom: 1.1rem; line-height: 1.8rem; } }

a.btn-navigate { border-radius: 3px; padding: 8px 18px; background-color: #437ed8; color: white; text-decoration: none; }

a.btn-navigate:hover { background-color: #2864c0; }

.user-decision { margin: 4em 0; display: flex; justify-content: space-around; }

.user-decision a { display: block; }

.grid-cards { padding: 40px 0px; margin: 2rem; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }

.grid-cards > div { transition: transform 250ms; border-radius: 6px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; height: 100%; font-size: 1.8em; box-shadow: 0 0 6px 2px #0000006B; color: white; padding: 10px; width: 240px; margin: auto; }

.grid-cards > div:hover { transform: scale(1.1) rotate(0) !important; z-index: 1; }

.grid-cards > div img { max-width: 128px; max-height: 88px; }

@media only screen and (max-width: 1024px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } .grid-cards > div { font-size: 1.6em; } }

@media only screen and (max-width: 768px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } .grid-cards > div { font-size: 1.4em; } }

@media only screen and (max-width: 540px) { .grid-cards { grid-template-columns: repeat(1, 1fr); } .grid-cards > div { font-size: 1.3em; } }

.footer { font-size: 0.9rem; background-color: #437ed8; color: white; }

.footer a, .footer a:link, .footer a:visited, .footer a:hover, .footer a:active { color: white; text-decoration: none; }

/*# sourceMappingURL=style.css.map */