
h1 {
    text-align: right;
}

h1, h2, h3, h4 {
    font-family: 'Almendra SC';
}
h2 {
    border-bottom: none;
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
    text-align: center;
}

article {
    background-color: bisque;
}

section::after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    margin-top: 4em;
    width: 80%; /* Change this to whatever width you want. */
    margin-bottom: 1em;
    border-bottom: 5px double rgb(5, 85, 83); 
}

section:last-of-type {
    margin-bottom: 4rem;
}

section:last-of-type::after {
    border-bottom: none;
    
}

a.go-back {
    font-size: 1.8rem;
    display: block;
    text-align: center;
    border-top: 3px solid rgb(5, 85, 83); 
    border-bottom: 3px solid rgb(5, 85, 83); 
    padding: 0.5rem;
    width: 70%;
    margin-inline: auto;
  }

