.contact-container-main {
  display: flex;
  justify-content: center;
  margin-top: 75px;
}

h1 {
  text-align: center;
  margin-top: 50px;
  color: orange;
  font-size: 36px;
}

.contact-container-sub {
  padding: 35px;
  background-color: #222222;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.name-email-container {
  width: 600px;
  display: flex;
  justify-content: space-between;
}

.name-input,
.email-input {
  background-color: rgb(197, 196, 196);
  width: 250px;
  height: 24px;
  padding: 8px 16px;
  border: none;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 18px;
}

.message-input {
  background-color: rgb(197, 196, 196);
  font-size: 18px;
  border: none;
  resize: none;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 25px;
  width: 600px;
  height: 200px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.submit-btn {
  background-color: #282828;
  color: orange;
  padding: 4px 16px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
}

.name-input::placeholder,
.email-input::placeholder,
.message-input::placeholder {
  font-family: cursive;
}

.success-message {
  color: orange;
}

.auto-text-container-top,
.auto-text-container-bottom {
  display: flex;
  justify-content: left;
  flex-direction: column;
  margin-left: 120px;
}

.auto-text-container-top .tags,
.auto-text-container-bottom .tags {
  color: rgb(202, 202, 202);
  font-size: 26px;
}
.auto-text-container-top span {
  color: orange;
  font-size: 26px;
}
