* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: whitesmoke;
}

article {
  max-width: 90%;
  border-radius: 1.4em;
  padding: 1.5em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1.5em;
  background-color: white;
  box-shadow: 0px 8px 15px rgba(190, 190, 190, 0.4);
  margin: 2em 0;

  h2 {
    font-size: 2rem;
    margin-bottom: 0.2em;
  }

  h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6em;
  }

  p,
  li {
    font-size: 1.05rem;
  }
}

a {
  text-decoration: none;
}

header {
  margin: 0 auto;
  .links-section {
    margin-bottom: 1.2em;
    display: flex;
    gap: 1em;
    text-decoration: underline;
    color: hsl(230, 92%, 39%);
    text-decoration-color: hsl(230, 92%, 39%);
  }
  figure{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  img {
    border-radius: 50%;
    width: 10em;
    height: 10em;
  }
}

ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8em;
  flex-flow: row wrap;
  li {
    border-radius: 1.2em;
    padding: 0.5em;
    gap: 0.2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

#hobbies-section {
  li {
    color: hsl(230, 92%, 39%);
    background-color: hsl(230, 100%, 87%);
  }
}

#dislikes-section {
  li {
    background-color: hsl(221, 50%, 94%);
    color: hsl(228, 40%, 10%);
  }
}

#user-section {
  h2 {
    text-align: center;
  }
}

#nav-links {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

#time {
  color: hsl(220, 8%, 64%);
}

@media screen and (min-width: 768px) {
  article {
    max-width: 50%;
  }
}
