body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffe814;
}

header {
    background-color: #f4f4f4;
    color: #333;
    padding: 1em 0;
    text-align: center;
}

main {
    padding: 20px;
    text-align: center;
}

ul {
	list-style-type: none;
	padding: 0;
}
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
	flex-wrap: wrap; /* Ensures that buttons wrap to the next line if the screen is too small */
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    text-align: center;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}


.back-button:hover {
    background-color: #ff0000;
    color: #ff0000;
}