body {
  font-family: Arial, sans-serif;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0 500px;
  padding: 0;
  background-color: rgb(245, 208, 243);
}
main {
    display: flex;
    background-color: salmon;
    justify-content: center;
    align-items: center;
  margin: auto;
  padding: 20px;
  width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
ol {
    color: #5f5e5e;
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: relative;
    gap: 20px;
    font-size: 0.7rem;
  list-style-type: decimal;
  padding: 0;
}
a {
    color: #5f5e5e;
    text-decoration: none;
    font-weight: bold;
}

h1 {
    color: #6c1bc9;
    text-align: center;
    margin-bottom: 25px;
    width: fit-content;
}
a:visited {
    color: #ff9900;
}