html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 10px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: PLACEHOLDER;
  /* The background color of the page is now a nice shade of blue */
  background: linear-gradient(to right, #f69d3c, #3f87a6);
}

body {
    font-family: "Roboto", sans-serif;
    background: linear-gradient(#f69d3c, #3f87a6);
    color: #fff;
    margin: 0;
}

h1 {
  font-size: 30px;
  text-align: center;
}

p,
li {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block-start: 2px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: rgba(231, 162, 226, 0.2);
}

nav a.active {
  background-color: rgb(145, 74, 74);
}
