@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
} 

@keyframes bg{
  0%{
    background-position-x: 0;
  }
  
  100%{
    background-position-x: 10000px;
  }
}

html {
  background-color: #000000;
  background: linear-gradient(to right, #1e5799 0%,#2ce0bf 19%,#76dd2c 40%,#dba62b 60%,#e02cbf 83%,#1e5799 100%); 
  background-size: 10000px 100%;
  animation: bg 15s linear infinite;  
  height: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100%; 
}

.navbar-top, .navbar-bottom {
  width: 100%;
  height: max(60px, 5vh);
  display: flex;
}

.navbar-top {
  position: fixed;
  top: 0;
  left: 0;
  justify-content: right;
  align-items: center;
  background-color: black;
}

.navbar-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.nav-link, .nav-button {
  font-family: "Roboto-Regular", sans-serif;
  font-size: 1.05rem;
  text-decoration: none;
  color: white;
}

.nav-link {
  margin-right: min(25px, 2.5vw);
}

.nav-link-bottom {
  font-size: 0.95rem;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-button {
  padding: 5px 10px;
  border: 1px solid white;
  background-color: black;
  border-radius: 10px;
  margin-right: min(30px, 3vw);
}

.nav-button:hover {
  color: black;
  background-color: white;
}

.logo {
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin: 0;
  font-family: "Roboto-Regular", sans-serif;
  color:white;
}

