@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");

html {
  font-size: 62.5%;
  /* 1 rem = 10px */
}

img.logo {
  max-width: 12rem;
  display: block;
  margin: 40px auto 20px auto;
}

h2 {
  padding: 0px;
  margin-bottom: 20px;
  color: #fff;
  text-align: right;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.social_media {
  margin-bottom: 20px;
}
.social_media a {
  padding-right: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform 0s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  z-index: 0;
}
.social_media a:hover svg {
  transform: scale(1.075);
}
.social_media a :is(svg, img) {
  margin-top: 8px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50px;
}

h3 {
  color: rgb(0, 0, 0);
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  margin: 5px auto;
}

body {
  background-image: url("feedback_background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ebeef1;
  text-align: center;
  /* font-family: "poppins"; */
  margin: auto;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Tajawal", sans-serif;
}

.buttons {
  width: 100%;
}
.buttons a {
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
  border-radius: 74px;
  background: #fff;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.25);
  margin: 20px auto;
  color: #585858;
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.buttons a svg {
  display: inline-block;
  float: left;
  margin-right: 25px;
  transform: scale(1.7);
  width: 28px;
  height: 28px;
}
.buttons div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.buttons a p {
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.buttons a:hover {
  transform: scale(1.1);
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  margin: auto;
  padding: 10px 5%;
  width: 88%;
}

.row .col {
  flex: 0 0 50%;
  padding: 5px;
}
.row .col:first-child {
  text-align: right;
}
.row .col:last-child > div {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 1px 50px 0px rgba(72, 193, 207, 0.25);
  padding: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: fit-content;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .row {
    flex-direction: column;
    padding: 10px;
    margin: 0;
    width: auto;
  }
  .row .col {
    flex: 0 0 100%;
  }
  body {
    display: block;
    height: auto;
  }
  .row .col:last-child > div {
    padding: 30px;
  }
  .row .col:first-child {
    text-align: center;
  }
  h2 {
    text-align: center;
  }
  .buttons a {
    margin: 10px auto;
  }
}
