@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin: 5px 0;
}

li {
  list-style: none;
}

body {
  display: flex;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(to right, #051937, #0d436a, #03739f, #00a7d1, #0adefd);;
  font-family: "Nunito", sans-serif;
}

.container {
  margin: auto;
  width: 500px;
  height: calc(100vh - 20px);
  margin: 20px 0 0 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
   
}

.container .profile {
  width: 104px;
  margin-bottom: 20px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 99;
}

.container h2 {
  margin: 0;
  font-size: 18px;
}

.container .occupation {
  font-size: 14px;
  color: #e3e3e3;
}

.content-main h2{
    text-align: center;
}

.social-media {
  display: flex;
  height: 65px;
  width: 223px;
  justify-content: space-around;
  align-items: center;
  background: rgb(10 82 123 / 38%);
  border-radius: 50px;
  position: absolute;
  top: -32px;
  left: calc(50% - 111px);
  z-index: 9;
}

.social-media a {
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media svg {
  color: #16649c;
}

.info-container {
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 40px;
  border-radius: 50px;
}

.content {
  padding: 50px 30px 20px;
  width: 100%;
  color: #0d436a;
  overflow: hidden;
  position: relative;
}

.content-secondary {
  visibility: hidden;
  background: #fff;
  position: absolute;
  width: 100%;
  height: 90%;
  left: 100%;
  top: 50px;
  z-index: 2;
  padding: 0 30px;
  border-radius: 50px;
}

.content-secondary h3 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.content-secondary h3 svg {
  margin-right: 10px;
}

.content-secondary.show {
  animation: content-show 0.5s forwards;
}

.content-secondary.hide {
  animation: content-hide 0.5s forwards;
}

.container-video {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 6px;
  margin: 20px 0;
}

.container-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.link {
  margin: 15px auto;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bcbcbc;
  border-radius: 16px;
  text-decoration: none;
  color: #0d436a;
  cursor: pointer;
}
.link:hover{
  box-shadow: 4px 4px 18px -5px rgba(112, 112, 112, 0.72);
}

.link.highlight {
  color: #fff;
  font-weight: bold;
  background: #4693c6;
  border: 1px solid #4693c6;
}


@keyframes content-show {
    0% {
      left: 100%;
      visibility: hidden;
    }
    100% {
      left: 0;
      visibility: visible;
    }
  }
  
  @keyframes content-hide {
    0% {
      left: 0;
      visibility: visible;
    }
    100% {
      left: 100%;
      visibility: hidden;
    }
  }

  
 
  @keyframes zoomtwx{
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0.2;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }