/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body{
  margin:0;
  padding:0;
  background-image: url("https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExdWJma3pjYnk1emsyNjNpZ2FleGRqY215MDkzdGI5c2V1ZDhwaWU2NyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Basrh159dGwKY/giphy.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Verdana;
}
.heading{
  text-align:center;
  width: 700px;
  height:10vh;
  color:white;
  padding: 10px;
  }
.heading h1 {
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-align: center;
    animation: rainbowGlow 3s infinite linear;
    -webkit-text-stroke: 1px rgba(0,0,0,0.4);
}

@keyframes rainbowGlow {
    0% {
        text-shadow: 0 0 5px red, 0 0 15px red;
    }
    16% {
        text-shadow: 0 0 5px orange, 0 0 15px orange;
    }
    33% {
        text-shadow: 0 0 5px yellow, 0 0 15px yellow;
    }
    50% {
        text-shadow: 0 0 5px lime, 0 0 15px lime;
    }
    66% {
        text-shadow: 0 0 5px cyan, 0 0 15px cyan;
    }
    83% {
        text-shadow: 0 0 5px violet, 0 0 15px violet;
    }
    100% {
        text-shadow: 0 0 5px red, 0 0 15px red;
    }
}
.main{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 700px;
  background-image: url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExbGwwYzZ3eWFwbXd4M21ka3h0eWl3c2liaXE0c2RxM2E2MGpxdXNvcCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/RHIKETUlUINYvV7CAO/giphy.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  width: 700px;
  border-radius: 20px;
  box-shadow: 0 20px 25px rgba(0,0,0,0.2);
  }
  .contents{
    display:flex;
    flex-direction: row;
    justify-content:center;
    gap:80px;
    }
  .contents button {
    min-width: 110px;
    padding: 6px 10px;
    font-size: 14px;
    background-image: url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExazN0bTM3OThsOTJvZmRzdWxveDBibzQ0MnVwYXNrMDRvbnBncTBtNiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/KcnbWfsuFr7JpgowGT/giphy.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  }
  .contents button:active {
    transform: translateY(2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  .para{
    text-align:center;
  }
  .para h2 {
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-align: center;
    animation: rainbowGlow 3s infinite linear;
    -webkit-text-stroke: 1px rgba(0,0,0,0.4);
}

@keyframes rainbowGlow {
    0% {
        text-shadow: 0 0 5px red, 0 0 15px red;
    }
    16% {
        text-shadow: 0 0 5px orange, 0 0 15px orange;
    }
    33% {
        text-shadow: 0 0 5px yellow, 0 0 15px yellow;
    }
    50% {
        text-shadow: 0 0 5px lime, 0 0 15px lime;
    }
    66% {
        text-shadow: 0 0 5px cyan, 0 0 15px cyan;
    }
    83% {
        text-shadow: 0 0 5px violet, 0 0 15px violet;
    }
    100% {
        text-shadow: 0 0 5px red, 0 0 15px red;
    }
}
.para p{
  color:white
  }
  .Gifs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
  }
  .Gifs img {
    width: 180px;              
    height: 180px;
    object-fit: cover;
  }
    