body {
  background: #7a7a7a;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1 {
  text-align: center;
  margin-top: 3rem;
  font-size: 3.5rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.container {
  display: flex;
  justify-content: center;
  height: 300px;
  width: 80%; 
  background-color: #b4afaf;
  font-size: 2rem;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 1rem;
  margin: 2rem;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); 
}

/*Button Three*/
.button-three {
  text-align: center;
  cursor: pointer;
  font-size: 24px;
  position: relative;
  background-color: #f39c12;
  border: none;
  border-radius: 8px;
  padding: 20px;
  width: 40%; 
  text-align: center;
  -webkit-transition-duration: 0.5s; 
  transition-duration: 0.5s;
  text-decoration: none;
  overflow: hidden;
}

.button-three:hover {
  background: #fff;
  box-shadow: 0px 2px 10px 5px #97b1bf;
  color: #000;
}

.button-three:after {
  content: "";
  background: #f1c40f;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s;
}

.button-three:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s;
}




@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
    height: 250px;
  }
  .button-three {
    width: 50%;
  }
}


@media only screen and (max-width: 480px) {
  .container {
    width: 90%;
    height: 200px;
  }
  .button-three {
    width: 60%;
  }
}