@font-face {
  font-family: Roboto;
  src: url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);
}

:root {
  --primary-color: rgb(150, 0, 150) !important;
  --primary-color-light: rgb(189, 83, 189) !important;
  --primary-color-dark: rgb(88, 0, 88) !important;
}


.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.dropdown-item:active {
  background-color: var(--primary-color) !important;
}


.btn-primary:hover {
  background-color: var(--primary-color-dark) !important;
  border-color: var(--primary-color-dark) !important;
}


a {
  color: var(--primary-color-light) !important;
}


a:hover {
  color: var(--primary-color-dark) !important;
}


* {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
}

h1 {
  color: white !important;
}

button {
  font-size: 1.5rem !important;
}

.my-navbar {
  position: fixed;
  text-align: right;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100vw;
  height: 100px;
}

li {
  text-decoration: none;
  list-style: none;
  padding: 0.5rem;
}

.body-wrapper {
  height: 100vh;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.zoom {
  transition: transform 0.5s ease;
}

.zoom:hover {
  transform: scale(1.1);
}

.css-selector-down {
  background: linear-gradient(180deg, #440065, #130012);
  background-size: 400% 400%;
  animation: purple-background 13s ease infinite;
}
@keyframes purple-background {
  0% {
    background-position: 7% 0%;
  }
  50% {
    background-position: 94% 100%;
  }
  100% {
    background-position: 7% 0%;
  }
}
.css-selector-up {
  background: linear-gradient(0deg, #440065, #130012);
  background-size: 400% 400%;
  animation: purple-background 13s ease infinite;
}

.css-selector-up-green {
  background: linear-gradient(0deg, #1d6500, #001300);
  background-size: 400% 400%;
  animation: purple-background 13s ease infinite;
}
@keyframes purple-background {
  0% {
    background-position: 7% 0%;
  }
  50% {
    background-position: 94% 100%;
  }
  100% {
    background-position: 7% 0%;
  }
}/*# sourceMappingURL=index.css.map */