body {
  font-family: sans-serif;
  text-align: right;
}

.titulo {
  font-size: 5em;
  padding-right: 3em;
}

p {
  font-size: 1em;
  padding-right: 200px;
}
nav {
    padding-top: 100px;
    width: 280px;
    position: fixed;
}

li, a {
    list-style-type: none;
    text-decoration: none;
    color: black;
}

/* Mobile styles */
@media only screen and (max-width: 700px) {
  body {
    font-family: sans-serif;
  }

  .titulo {
    font-size: 5em;
    padding-right: 0;
  }

  p {
    font-size: 1em;
    padding-right: 0; /* Remove the padding */
  }

  nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    padding: 10px;
  }

  nav ol {
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
  }

  nav li {
    list-style-type: none;
  }

  nav a {
    text-decoration: none;
    color: black;
  }
}

