@import "fonts.css";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 95%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    z-index: -1;
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
}

.navbar{
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0px 0px 10px 10px;
}

.navbar ul
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: space-evenly;
    list-style-type: none;
}

.navbar li {
    padding: 3px 5px;
    margin: 3px 11px;
}

.navbar a
{
    display: block;
    font-size: 1.5rem;
    float: left;
    color: #2020FF;
    text-align: center;
    text-decoration: none;
}

.navbar a:hover
{
    background-color: rgba(128, 128, 128, 0.2);
    border-radius: 5px 5px 5px 5px;
}


main
{
  width: 100vw;
  height: 90vh;
  top: 46px;
}

footer
{
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #554a40;
  color: #b8baa8;
}

.footer-top
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: space-evenly;
}

.footer-top-section
{
    width: 15%;
    margin: 5px;
    padding: 3px;
}

.footer-top-section > ul
{
    list-style-type: none;
    /*padding-left: 20px;*/
}

.footer-top-section > ul > li
{
    margin-bottom: 0.5em; /* Set the space between each list item (half a line) */
    line-height: 1.5em; /* Optional: adjust line height to fine-tune spacing */
}

.footer-top-section > ul > li > a
{
    color: inherit;
}

.footer-top-section img
{
    width: 130px;
    height: auto
}

.footer-bottom
{
    background-color: #b8baa8;
    color: #554a40;
    border-top: 1px solid #212624;
}







