.footer-box {
  display: grid;
  grid-template-rows: 1fr 1fr 3fr;
  padding-bottom: 12px;
  background-color: rgb(0, 0, 0);
}

.social-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:center;
  padding: 0;
  background-color: rgb(0, 0, 0);
  column-gap: 22px;
}

.youtube-box , .insta-box , .twitter-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgb(255, 0, 0);
  background-color: lightblue;
}

.insta-box {
  box-shadow: 0 0 20px rgb(255, 0, 225);
}

.twitter-box {
  box-shadow: 0 0 20px rgb(0, 157, 255);
}


.youtube {
  width: 100%;
}

.insta {
  width: 100%;
}

.twitter {
  width: 100%;
}




.thank-you-box {
  background-color: rgb(0, 0, 0);
  display: grid;
  justify-content: center;
  padding: 0;
  margin-top: 10px;
}

.thank-you {
  color: white;
  font-weight: 400;
  font-size: 15px;
}



.last-image-container {
  display: grid;
  align-items: center;
  justify-content:center;
}

.last-image {
  width: 120px;
  height: 120px;
}

@media only screen and (min-width: 1000px) {
  .footer-box {
    display: grid;
    grid-template-rows: 1fr 1fr 3fr;
    padding-bottom: 12px;
    width: 100vw;
    height: auto;
    background-color: rgb(0, 0, 0);
  }
  

  .social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    padding: 0;
    column-gap: 100px;
    background-color: rgba(255, 255, 255, 0);
  }

  .youtube-box , .insta-box , .twitter-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgb(255, 0, 0);
  }
  
  .insta-box {
    box-shadow: 0 0 20px rgb(255, 0, 225);
  }
  
  .twitter-box {
    box-shadow: 0 0 20px rgb(0, 157, 255);
  }
  
  
  .youtube {
    width: 100%;
  }
  
  .insta {
    width: 100%;
  }
  
  .twitter {
    width: 100%;
  }
  

  .thank-you-box {
    background-color: rgb(0, 0, 0);
    display: grid;
    justify-content: center;
    padding: 0;
    margin-top: 30px;
  }
  
  .thank-you {
    color: white;
    font-weight: 400;
    font-size: 25px;
  }
  
  
  
  .last-image-container {
    display: grid;
    align-items: center;
    justify-content:center;
  }
  
  .last-image {
    width: 200px;
    height: 200px;
  }
}