@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

h1 {
  width: 200px;
  margin: auto;
}
hr {
  width: 60vw;
}

.container {
  width: 60vw;
  margin: auto;
  padding: 20px;
  background-color: white;
}

@media screen and (max-width: 500px) {
  .container {
    width: 80vw;
  }
  hr {
    width: 80vw;
  }
}

.paragraph {
  margin: 50px auto;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 50px auto;
}

.buttons_btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background-color: #89cff0;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

.buttons_btn:hover {
  background-color: #e7a985;
  cursor: pointer;
}

.display_none {
  display: none;
}

@keyframes opacity_ani {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.opacity_animation {
  animation: opacity_ani 1s ease-in;
}
