/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

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

body {
  font-family: "Jacquard 12  ; Jacquard 24 ; Macondo";
  background-image: url("botticelli-primavera-flowers2.jpg");
}

.jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-family: "Jacquard 12", system-ui;
  color: #EDE4D9;
  font-size: 60px;
  padding-top:5%;
}

.jacquard-24-regular {
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
}

h3 {
  font-family: "Jacquard 24", system-ui;
  color: #EDE4D9;
  font-size: 25px;
}

.macondo-regular {
  font-family: "Macondo", cursive;
  font-weight: 400;
  font-style: normal;
}

.contact-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 8%;
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom:15%;
}

.contact-right-title h1 {
    font-family: "Jacquard 12";
    color: #EDE4D9;
    font-size: 40px;
    margin-bottom: 5px;
    align-items: center;
}

.contact-left h1 {
    font-family: "Jacquard 12";
    color: #EDE4D9;
    font-size: 60px;
    margin-bottom: 5px;
    padding-bottom:8%;
}

.contact-left {
  padding-bottom:8%;
}

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  border-radius: 50px;
  background-color: #EDE4D9;
}

.contact-right textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
  background-color: #EDE4D9;
}

.contact-inputs:focus{
  border: 2px solid #78081c;
}

.contact-inputs::placeholder{
  font-family: "Macondo";
  color: #1c1c1c;
}

.contact-right button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 15px;
  gap: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Macondo";
  background-color: #EDE4D9;
}

.contact-left img {
    align-items: center;
    padding-bottom:8%;
}

@media (max-width:800px) {
  .contact-inputs {
    width:80vw;
  }
  .contact-left {
    display:none;
  }
}

input[type="text"] {
    font-family: "Macondo", cursive;
    font-size: 18px;
}

input[type="email"] {
    font-family: "Macondo", cursive;
    font-size: 18px;
}

textarea {
  font-family:"Macondo", cursive;
  font-size: 18px;
  }
  
a:visited {
  color: #aaa7ad;
}

a:link {
  color: #fdfeff;
}

a:hover {
  color: #EDE4D9;
}
