html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  overflow: hidden;
  font-family: 'Quicksand', sans-serif !important;
}

.container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.message {
  width: 50%; /* Adjust this for smaller screens */
  padding: 25px;
}

.message h1 {
  font-size: 56px;
  color: #5f5f5f;
  font-weight: 100;
  margin: 40px 0;
}

.message p {
  font-size: 20px;
  color: #808080;
  margin: 40px 0;
  line-height: 28px;
}

.message a {
  display: inline-block;
  background: #c7c7c7;
  color: #696969;
  text-align: center;
  padding: 20px 40px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.message a:hover {
  background: #333;
  color: #ccc;
}

.contact-box {
  display: block;
  background: #dcdcdc;
  color: #696969;
  text-align: center;
  padding: 20px 40px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.contact-box h4 {
  margin: 10px;
}

.gear {
  content: "ï€“";
  font-family: "FontAwesome";
  position: absolute;
  animation: gear 50s infinite linear;
  transform-origin: center;
  top: -250px;
  right: -250px;
  font-size: 600px;
  z-index: 0;
  color: #dcdcdc;
}

@keyframes gear {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile responsive styles */
@media (max-width: 760px) {
  .message {
    width: 90%; /* Take up more width on smaller screens */
    padding: 15px; /* Reduce padding */
  }

  .message h1 {
    font-size: 36px; /* Adjust heading size */
    margin: 20px 0; /* Reduce margin */
  }

  .message p {
    font-size: 18px; /* Adjust paragraph size */
    margin: 20px 0; /* Reduce margin */
    line-height: 24px; /* Adjust line height */
  }

  .message a, .contact-box {
    font-size: 18px; /* Adjust button size */
    padding: 15px 30px; /* Reduce padding for buttons */
  }

  .gear {
    font-size: 300px; /* Smaller gear on mobile */
    top: -100px; /* Adjust position */
    right: -100px; /* Adjust position */
  }
}
