

@media (min-width:900px) {
  #skillsfuture-team-photo {
    padding: 50px;
  }
}
html, body {
  overflow-x: hidden;
}
#profilebody {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: wheat;
}

main {
  background-color: rgb(255, 255, 255);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 10px 10px rgb(118, 172, 241);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
}

main:hover {
  transform: translate(10px, 10px);
  box-shadow: 0px 0px rgb(118, 172, 241);
}

main div {
  margin-bottom: 2rem;
  width: 30vw;
}

main .profile img {
  width: 40%;
  border-radius: 50%;
  box-shadow: 10px 6px rgba(97, 126, 240, 0.671);
  transition: all .5s ease;
}

main .profile img:hover {
  cursor: pointer;
  transform: translate(10px, 10px);
  box-shadow: 0px 0px rgba(97, 126, 240, 0.671);
}

main .profile h1 {
  font-size: 2rem;
  font-weight: bolder;
}

#profile-a {
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
}

a div {
  background-color: rgb(183, 124, 238);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 10px 10px rgb(255, 187, 109);
  text-align: center;
}

a div:hover {
  background-color: rgb(255, 187, 109);
  box-shadow: 10px 10px rgb(183, 124, 238);
}

a div:hover p {
  color: black;
}

a div img {
  width: 4rem;
}

a div p {
  display: inline;
  color: white;
  text-align: center;
  position: relative;
  top: -0.5rem;
}

a div:active {
  transform: translate(10px, 10px);
  box-shadow: 0px 0px rgb(183, 124, 238);
}

@media (max-width: 900px) {
  main {
    width: 80%;
    padding: 1.5rem;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  main:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  main .profile h1 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 900px) {
  main .profile img {
    width: 60%;
  }
}

@media (max-width: 900px) {
  main .profile img:hover {
    transform: none;
    box-shadow: 10px 6px rgba(97, 126, 240, 0.671);
  }
}

@media (max-width: 900px) {
  main div {
    width: 70vw;
  }
}

@media (max-width: 400px) {
  main a div p span {
    display: none;
  }
}

#tracking-in-expand {
  -webkit-animation: tracking-in-expand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  animation: tracking-in-expand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

#css-selector {
  background: linear-gradient(270deg, #23f4be, #009cbc);
  background-size: 400% 400%;
  -webkit-animation: css-gradient 10s ease infinite;
  -moz-animation: css-gradient 10s ease infinite;
  animation: css-gradient 10s ease infinite;
}

@keyframes css-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@media (max-width: 600px) {
  
}