body {
  margin: 0;
  background: linear-gradient(to right, #fcd0de, #c4ecff, #f29191);
}

.button {
  position: relative;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 1.25em;
  cursor: pointer;
  margin-left: 30px;
  border: 1px solid rgb(225, 225, 225);
}

.button span {
  position: relative;
  z-index: 1;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  border-radius: 9px;
  transition: 0.5s;
  opacity: 0;
  filter: blur(20px);
}

.button:hover:after {
  opacity: 1;
}

.nav-list {
  background-color: rgba(240, 255, 255, 0.315);
  margin: 0;
  padding: 7px;
  animation: 0.8s fadeslide forwards;
}

.nav{
  animation: 0.6s fadeslide forwards;
}


h1{
    font-family: 'Baloo Bhaijaan 2';
    margin: 2%;
    animation: 0.8s fadeslide forwards;
}

p{
    font-family: 'Baloo 2';
    margin: 3%;
    font-size: 1.6rem;
    animation: 1.2s fadeslide forwards;
}

@keyframes fadeslide{

from{
  opacity: 0;
  transform: translateY(100px);
}

to{
  opacity: 1;
  transform: translateY(0);
}

}


footer {
  background: linear-gradient(to right, #270f1a, #2c5364);
  padding: 20px 30px;
  height: 20vh;
  width: 95vw;
  text-align: center;
  position: absolute;
  top: 200vh;
  border-radius: 30px;
}

.copyright {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00c6fb, #005bea, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.logo1{
  position: absolute;
  height: 3vw;
  top: 4vw;
  left: 43vw;
}

.instagram {
  font-family: "Baloo Bhaijaan 2";
  font-size: 2rem;
  color: #d9d9d9;
}

.logo2{
  position: absolute;
  height: 3vw;
  top: 8vw;
  left: 43vw;
}

.github {
  font-family: "Baloo Bhaijaan 2";
  font-size: 2rem;
  color: #d9d9d9;
}

.github:hover{

  color: black;
}

.instagram:hover{

  color: black;

}
