body {
    background: linear-gradient(#FEEC41, #FF6060, #D51C39, #760031);
    /* The min-height line stretches the body to at least 100vh â€” 100% of the viewport height, meaning the window. Without it, the body is only as tall as your words, so on a roomy screen the gradient would run out partway down and start over.*/
    min-height: 100vh;
    color: black;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    }

.things_i_like {
    text-align: left;
    background-color: #AA1C41;
    color: #4B1426;
    border-radius: 20px;
    }
      
details {
    font-size: 19px;
    padding: 2px;
    margin: 20px 20px;
    }
     
a {
    color: #5E244E;
    }
    
a:hover {
    color: gold;
    }

/* footer {} */