@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background-color: hsl(257, 40%, 49%);
  background-image: url('images/bg-desktop.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  margin: 4%;
}

header img {
  width: 220px;
}

main {
  display: flex;
  justify-content: space-between;
  margin: 4.5%;
}

article  {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  gap: 5%;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: hsl(257, 69%, 91%);
  font-size: 40px;
}

p {
  font-family: "Open Sans", sans-serif;
  color: hsl(258, 17%, 89%);
}

button {
  border-radius: 50px;
  width: 40%;
  padding: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: hsl(257, 40%, 49%);
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
  background-color: hsl(300, 69%, 71%);
  color: hsl(258, 17%, 89%);
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: flex-end;
  margin: 5%;
  gap: 1%;
  padding: 20px;
  font-size: 25px;
  transition: color 1s ease;
}

ul {
  display: flex;
  list-style-type: none;
}

a {
  text-decoration: none;
  padding: 10px;
}

ion-icon {
  border: 1px solid hsl(258, 17%, 89%);
  color: hsl(258, 17%, 89%);
  border-radius: 50px;
  padding: 10px;
}

ion-icon:hover {
  color: hsl(300, 69%, 71%);
  border: 1px solid hsl(300, 69%, 71%);
}