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

body {
  background: linear-gradient(135deg, #043222, #14532d, #22c55e);
  height: auto;
}

.contact-container {
  background-color: #f6e9d9;
  padding: 40px;
  width: 700px;
  height: 500px;
  margin: 150px 250px 200px 400px;
  border-radius: 2rem;
  box-shadow: 5px 5px 5px #043222;
}
.contact-container h2 {
  font-family: "Quicksand";
  font-size: 40px;
  color: #043222;
  margin-bottom: 50px;
}
.contact-container .inputbox {
  margin-bottom: 50px;
}
.contact-container .inputbox .input-1, .contact-container .inputbox textarea {
  border: none;
  border-bottom: 2px solid #043222;
  background-color: #f6e9d9;
  outline: none;
  width: 70%;
  margin-top: 10px 0;
  resize: none;
  font-size: 15px;
  font-weight: 300;
}
.contact-container .inputbox span {
  position: absolute;
  font-family: "Quicksand";
  left: 440px;
  margin-top: 10px 0;
  pointer-events: none;
  transition: 0.4s ease;
}
.contact-container .inputbox .input-1:focus ~ span, .contact-container .inputbox .input-1:valid ~ span, .contact-container .inputbox textarea:focus ~ span, .contact-container .inputbox textarea:valid ~ span {
  color: #043222;
  font-size: 14px;
  transform: translateY(-10px);
}
.contact-container .con-submit {
  display: inline-block;
  padding: 10px;
  width: 90px;
  border: none;
  border-radius: 0.75rem;
  background-color: #043222;
  color: #f6e9d9;
  transition: all 0.5s ease;
}
.con-submit:hover {
  cursor: pointer;
  background: linear-gradient(135deg, #043222, #14532d, #104a25);
  color: #D4AF37;
}

.footer-container{
    background-color: #043222;
    color: #f6e9d9;
}
.logo-name{
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    font-family: "Britney";
    font-size: 2.4rem;
}
.links-ul{
    display: flex;
    justify-content: center;
    font-family: "Quicksand";
    list-style: none;
    gap: 50px;
    padding-top: 40px;
}
.links-ul li a{
    text-decoration: none;
    color: #f6e9d9;
    font-size: 18px;
    transition: all 0.4s;
}
.links-ul li a:hover{
    color: #D4AF37;
}
.social-icons{
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    
}
.social-icons a{
    display: inline-block;
    transition: all 0.5s;
}
.social-icons a:hover{
    transform: translateY(5px);
}
.logo-name{
    width: 100px;
    height: 170px;
    place-self: center;
    gap: 10px;
}