* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.outer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
nav {
  background-color: #f3f0d7 !important;
}
.star-container {
  display: flex;
  justify-content: center;
}

.star {
  color: grey;
  font-size: 48px !important;
  margin: 8px !important;
  transition: color 0.3s cubic-bezier(0.45, 0, 0.55, 1),
    transform 0.3s cubic-bezier(0.5, 1, 0.89, 1),
    filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.2));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .star {
    font-size: 24px !important;
    margin: 4px !important;
  }
  .star span {
    font-size: 8px !important;
    margin-top: 1px !important;
  }
  .rec {
    display: none;
  }
}
.star span {
  font-size: 14px;
  margin-top: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: bold;
  text-shadow: -1px -1px 8px #080808, 2px 2px 4px #1b1b1b;
}
section.discription {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.face {
  opacity: 0;
  color: gainsboro;
  font-size: 80px !important;
  margin: 16px auto !important;
  transition: opacity 0.3s cubic-bezier(0.45, 0, 0.55, 1),
    transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  text-align: center;
}
bdi {
  color: #f66e22;
  font-size: 24px;
  line-height: 40px;
}
body {
  background-color: #f3f0d7;
  overflow-x: hidden;
}
.face-container {
  display: flex;
  justify-content: center;
}
.rec {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.7;
}
textarea {
  resize: none;
  height: 100px;
}
input:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: #f66e22 !important;
}
button.send {
  color: #fff !important;
  background-color: #f66e22 !important;
  transition: background-color 0.3s ease-in-out;
}
button.send:hover {
  background-color: #e78044 !important;
}
.form {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .form {
    width: 100%;
  }
}
