body {
  margin: 0px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  overflow: auto;
}

#body {
  width: 100%;
}

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

.topBar {
  padding-top: 10px;
  background-color: #496bbe;
  color: #f5f7fa;
  justify-content: space-between;
  height: 10px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding-bottom: 30px;
  z-index: 1;
}

.switch-page {
  margin-left: 1rem;
  color: #f5f7fa;
  font-size: 25px;
  text-decoration: none;
}

.progress-container {
  width: 100%;
  height: 16px;
}

.progress-bar {
  height: 20px;
  background: rgba(75, 108, 190, 0.7);
  width: 100%;
}

.header {
  background: #496bbe;
  padding: 1rem;
  color: #f5f7fa;
  display: flex;
  font-size: 30px;
}

.headerTitle {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: #496bbe;
  padding: 1rem;
  color: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

svg.footerIcon {
  height: 24px;
  fill: #f5f7fa;
}

.image-popup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  background-color: rgba(0, 0, 0, 0.733);
  margin-top: -1px;
  animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.popup-content {
  display: flex;
  max-width: 80%;
  max-height: 80%;
  padding-top: 5%;
  margin: auto auto auto auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3;
}

@media only screen and (max-width: 700px) {
  .popup-content {
    width: 100%;
  }
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  gap: 5px;
}

.gallery-image:hover {
  scale: 1.01;
  transition: 400ms;
}

.gradient-text {
  background: linear-gradient(to right, #ca5454, #e8a040, #fcdd75, #ebc59c);
  background-size: 200% 200%;
  animation: rainbow 2s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  transition: color 0.2s ease-in-out;
}

.gradient-text:hover {
  color: rgba(0, 0, 0, 0);
}

@keyframes rainbow {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
