* {
  padding: 0;
  margin: 0;
  font-family: "Balsamiq Sans", cursive;
  /* font-family: 'Fredoka One', cursive; */

}

.page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  background-color: #82C4D2; /*url("back2.jpg")*/
  background-size: cover;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: rgba(111,167,180 , 1);
}

.logo {
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 25px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 35%;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: black;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 17px;
}

.nav-links a:hover {
  font-size: 19px;
  font-weight: bold;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .nav-links {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: rgba(111,167,180 , 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    opacity: 0;
  }
  .burger {
    display: block;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.bodydown {
  display: flex;
  align-items: center;
  margin-top: 90px;
  justify-content: center;
  text-align: center;
  color: black;
}

.ProfileCard {
  width: 370px;
  background-color:rgba(111,167,180 , 1);
  padding: 30px 0;
  border-radius: 10%;
}
img {
  height: 200px;
  width: 200px;
  border-radius: 100%;
}

.ProfileText h1 {
  font-size: 3em;
  padding-top: 20px;
  padding-bottom: 50px;
}

i {
  color: black;
  padding: 5px;
}
