body {
    margin: 0;
    padding: 0;
    background-color: #fffbf4; /* Background color changed to white */
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fffbf4; /* Background color changed to white */
    padding: 20px;
    position: relative;
}

h1 {
    color: #fdd656;
    text-align: center;
    font-family: 'Racing Sans One';
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    color: #000000;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.back-button {
    position: absolute;
    top: 60px;
    left: 30px; /* Moved to the left corner */
    display: block;
    text-decoration: none;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    transition: color 0.3s ease;
}

.back-button:hover {
    cursor: pointer;
    color: #fdd656; /* Text color on hover */
}
