html, body {
    height: 100%;
}

::-webkit-scrollbar {
    width: 15px;
  }

::-webkit-scrollbar-thumb {
    background:rgb(104, 104, 104);
  }
  
::-webkit-scrollbar-track {
    background: white;
}

#navbar {
    height: 70px; 
    position: fixed; 
    z-index: 99; 
    width: 100%; 
    top: 0; 
    background-color: rgb(51, 51, 51);
}

#nav-items {
    margin-right: 15rem;
}

#nav-items li {
    list-style-type: none;
}

#nav-items a {
    color: white;
    padding: 0 2rem;
}

#navbar-logo {
    height: 140px; 
    padding-top: 45px;
}

#nav-items a:hover {
    text-decoration: none;
    color: gray;
}

.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 300px);
}

footer {
    background-image: linear-gradient(rgb(95, 95, 95), rgb(51, 51, 51))
}

.footer-link {
    color: white;
    padding: 1rem;
}

.footer-link:hover {
    text-decoration: none;
    color: rgb(170, 170, 170);
}