@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo img{
  margin-top: 20px;
  margin-left: 20px;
  float: left;
  width: 50px;
  height: auto;
  z-index: 1;
}

.menu{
  float: right;
  list-style-type: none;
  margin-top: 30px;
  margin-right: 20px;
}
.menu li{
  display: inline-block;
}

.menu li a{
  text-decoration: none;
  color: #fff;
  padding: 1vh 2vw;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  background: rgba(225,225,225,0.1);
  overflow: hidden;
  font-size: 0.9em;
}

.menu li a:hover{
  color: #fff;
  transition: 0.5s ease;
  border-radius: 20px;
  background: #755bea radial-gradient(circle, transparent 1%, #755bea 1%) center/15000%;
  box-shadow: 0 0px 10px rgba(117, 91, 234, 0.4), 0 0px 20px rgba(117, 91, 234, 0.4), 0 0px 40px rgba(117, 91, 234, 0.4);
}

.wrapper{
  max-width: 1500px;
  margin: auto;
  text-align: center;
}

.menu li.active a{
  background-color: #755bea;
  color: #fff;
}
.menu li a:active {
  background-color: #fff;
  background-size: 100%;
  transition: background 0s;
}

body {
  background: url('backgroundaboutme.png');
  width: 100%;
  height: 100%;
  color: white;
  font-family: 'Poppins', sans-serif;
}

img {
height: 20vw;
width: 20vw;
margin-top: 2vw;
border: 1px transparent;
border-radius: 10vw;
}

h1{
  font-size: 4vw;
  text-shadow: 0 0 0.5vw #755bea, 0 0 1vw #755bea, 0 0 2vw #755bea;
  margin-top: 7vh;
}

h2{
  font-size: 3vw;
}
p{
  font-size: 1.5vw;
  margin-left: 3vw;
  margin-right: 3vw;
}

.circle {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -10;
}
.circle li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  border-radius: 70%;
  animation: float 25s linear infinite;
  bottom: -150px;
  z-index: -3;
}
.circle li.purple{
  background: rgba(238,130,238,0.6);
  box-shadow: 0 0 5px rgba(238,130,238, 0.6), 0 0 10px rgba(238, 130, 238, 0.6), 0 0 20px rgba(238, 130, 238, 0.6), 0 0 40px rgba(238, 130, 238, 0.6);
}
.circle li.blue{
  background: rgba(64,224,208,0.3);
  box-shadow: 0 0 5px rgba(64,224,208,0.3), 0 0 10px rgba(64,224,208,0.3), 0 0 20px rgba(64,224,208,0.3), 0 0 40px rgba(64,224,208,0.3);
}
.circle li.red{
  background: rgba(205,92,92,0.5);
  box-shadow: 0 0 5px rgba(205,92,92,0.5), 0 0 10px rgba(205,92,92,0.5), 0 0 20px rgba(205,92,92,0.5), 0 0 40px rgba(205,92,92,0.5);
}
.circle li.pink{
  background: rgba(255,182,193,0.4);
  box-shadow: 0 0 5px rgba(255,182,193,0.4), 0 0 10px rgba(255,182,193,0.4), 0 0 20px rgba(255,182,193,0.4), 0 0 40px rgba(255,182,193,0.4);
}
.circle li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
}
.circle li:nth-child(2){
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.circle li:nth-child(3){
  left: 30%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  animation-duration: 12s;
}
.circle li:nth-child(4){
  left: 70%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.circle li:nth-child(5){
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  animation-duration: 10s;
}
.circle li:nth-child(6){
  left: 75%;
  width: 80px;
  height: 80px;
  animation-delay: 3s;
  animation-duration: 12s;
}
.circle li:nth-child(7){
  left: 90%;
  width: 110px;
  height: 110px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.circle li:nth-child(8){
  left: 20%;
  width: 50px;
  height: 50px;
  animation-delay: 2s;
  animation-duration: 12s;
}

@keyframes float{
  0%{
    transform: translateY(0) rotate(0deg);
    opacity:1;
  }

  100%{
    transform: translateY(-1000px) rotate(720deg);
    opacity:0;
  }
}

@media (max-width: 1000px){
  h1{
    margin-top: 25vh;
  }
}

@media (max-width: 1300px){
  h1{
    margin-top: 20vh;
  }
}

@media (max-width: 700px){
  h1{
    margin-top: 30vh;
  }
}
