body {
    background-color: #c96b80;
    background-image: url('img/LiMe_01.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 80% 10%;
    /* background-position: right bottom; */
    background-attachment: fixed; 
}

h1, h2, h3, p {
  font-family: "Inter", sans-serif;
  color: white;
}

h1 {
  font-optical-sizing: auto;
  font-size: 8rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}

h2 {
  font-optical-sizing: auto;
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
}

h3 {
  font-optical-sizing: auto;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.9;
}

.grid {
    display: grid;
    margin: 5%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}

.title-desktop {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}

.title-mobile, .title_form-mobile {
  display: none;
}

.data {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    align-self: end;
}

.par {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  padding-top: 40px;
} 


.btn {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  background-color: white;
  color: #c96b80;
  margin-top: 60px;
  padding: 12px 24px;
  width: 140px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  background-color: rgb(255, 249, 249);
  transform: scale(1.04); 
}


/* FORM */ 

.grid_form {
    display: grid;
    margin: 5%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}

.form {
  grid-column: 1 / 3;
  grid-row: 1 / 5;
}

.title_form {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.data_form {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    align-self: end;
}

.form {
  width: 640px;
  height: 1200px;
}

/* PHONE */

@media only screen and (max-width: 800px) {
  .grid, .grid_form {
      display: flex;
      flex-direction: column;
  }

  .title-desktop, .title_form-desktop {
    display: none;
  }

  .title-mobile, .title_form-mobile {
    display: block;
  }
  h1 {
  font-size: 4rem;
  } 

  .data, .data_form {
    margin-top: 20px;
    align-self: start;
  }

  .form {
  width: 100%;
  height: 1200px;
  }
}