* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
}
/* footer start */
footer.page-footer {
  bottom: 0;
  color: #fff;
  left: 0;
  position: fixed;
  right: 0;
}

.font-small {
  font-size: 1.2rem;
}
.text-center {
  text-align: center !important;
}
.py-3 {
  padding-bottom: .6rem !important;
  padding-top: .6rem !important;
}

footer.page-footer .footer-copyright {
  overflow: hidden;
  background-color: rgba(0,0,0,.3);
  /* color: rgba(255,255,255,.6); */
}
.footer-copyright > a {
  color: #fff;
  text-decoration: none;
}
.footer-copyright > a:hover {
  color: rgb(245, 102, 102);
  
}
/* footer end */

body {
  font-family: "Roboto", sans-serif;
  
}
.body{
	    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
}

.info-wrapper {
  width: 100%;
  height: 100%;
  padding: 40px 40px 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.text-wrapper {
  width: 100%;
  height: 100%;
  padding: 40px;
  row-gap: 40px;
}
textarea {
  width: 100%;
  height: 60%;
  padding: 20px;
  font-size: 30px;
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
    resize: none;
    color: #848484;
  border: none;
}
@media only screen and (max-width: 600px) {
  button {
      width: 100%; 
	      margin-left: 0%!important;
  }
}
button {
  cursor:pointer;
  margin-left: 42%;
  border: none;
  background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
  padding: 15px 40px;
  border-radius: 4px;
}
button:hover {
  background-image: linear-gradient(to top, #fbc2eb 100%, #a6c1ee 100%);
}
textarea:focus {
  outline: none;
}
.info-wrapper .box:nth-child(1){
	background-color: #ff7b54;
}
.info-wrapper .box:nth-child(2){
	background-color: #4aa96c;
}
.info-wrapper .box:nth-child(3){
	background-color: #ffd56b;
}
.info-wrapper .box:nth-child(4){
	background-color: #77acf1;
}
.info-wrapper .box:nth-child(5){
	background-color: #c67ace;
}
.info-wrapper .box:nth-child(6){
	background-color: #966c3b;
}
.info-wrapper .box:nth-child(7){
	background-color: #440a67;
}
.info-wrapper .box:nth-child(8){
	background-color: #5eaaa8;
}
.box {
  
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

.box h2 {
  font-size: 80px;
  font-weight: 100;
  color: #fefae0;
}

.box p {
  font-size: 20px;
  background-color: #fff;
  color: #283618;
  padding: 5px 20px;
  border-radius: 27px;
}

@media screen and (max-width: 768px) {
  .info-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media screen and (max-width: 576px) {
  .info-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
