#insert-email {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, #2a2829, #000000);
}

#container-information {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 30px 0 30px;
}

#column1 {
  display: flex;
  flex-direction: column;
}

#column1 h2 {
  background: linear-gradient(to right, #ffffff 50%, #544f51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Berkshire Swash", serif;
  font-size: 40px;
  font-weight: normal;
}

#column2 {
  display: flex;
  flex-direction: column;
}

input {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

#line-column {
  width: 300px;
  height: 1px;
  border: 1px solid white;
}

#column3 {
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 1px;
  border: 1px solid white;
}

button {
  background: linear-gradient(to bottom, #2a2829, #000000);
  width: 220px;
  height: 40px;
  border: 1px solid white;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

button:hover{
  border:none;
  transform: translateY(10px);
}

@media (min-width: 1600px) {
  p {
    font-size: 20px;
  }

  #container-information {
    margin: 0 50px 0 50px;
  }

  button {
    font-size: 20px;
  }

  input::placeholder {
    font-size: 15px;
  }

  #column1 h2 {
    font-size: 40px;
  }
  
  #insert-email{
    width: 100%;
    height: 130px;
  }
}
