@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

body {
    background-color: white;
    margin: 0px;
}
#navbar {
    overflow: hidden;
}


.sticky {
  position: fixed;
  top: 0;
  width: 50%;
}


.sticky + main {
  padding-top: 60px;
}
h1 {
    text-align: center;
    background-color: white;
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 48px;
    padding-top: 10px;
        padding-bottom: 10px;
                width: 50%; margin-left: auto; margin-right: auto;
}

h2 {margin-top: 0px;}


ul{
    padding: 0;
    list-style: none;
    background: #1d1d1f;
    transition: 0.3s ease-in-out 0s;
    text-align: center;
    margin-block-end: 0px;
    margin-block-start: 0px;
}
ul li{
    display: inline-block;
    position: relative;
    line-height: 35px;
    text-align: left;
    transition: 0.3s ease-in-out 0s;
}
ul li a{
    display: block;
    padding: 8px 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out 0s;
}

.home {
    font-weight: bold;
}
ul li a:hover{
    color: #fff;
    background: #808080;
    transition: 0.3s ease-in-out 0s;
}


main {
    height: 800px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding-top: 1em;
}
hr {
    margin: 0px;
}

.footer {
        position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    background-color: #1d1d1f;
    text-align: center;
}

.footer-text {
    margin: 0px;
    padding-top: 26px;
    color: white;
}

