* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(255, 243, 219);
  background-image: url('lines.svg');
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.name {
  font-size: 5rem;
  text-align: center;
}

.title {
  font-size: 2rem;
  text-align: center;
}

.info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.whatsapp-logo {
  width: 1.5rem;
  height: 1.5rem;
}

.online-consultation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.telephone {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .info {
    font-size: 1.5rem;
  }

  .online-consultation {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .personal-consultation {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
  }
}
