/* Apply to whole page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e4e4e4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}
  
/* Main content container */
body > h1, body > p, h2, p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: #f9e7e7;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
  
/* Title spacing */
h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    background: none;
    box-shadow: none;
}
  
/* Section headings */
h2 {
    margin-top: 40px;
    font-size: 1.5rem;
    color: #2c3e50;
}
  
/* Back link container */
.center-wrapper {
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

a#backLink {
    text-decoration: none;
    font-size: 1.2em;
    background: #dd514e;
    padding: 10px 20px;
    border-radius: 8px;
    color: #000000;
    
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

a#backLink:hover {
    background: #fa4b4b;
}