/* General Styles */
body {
    background-color: #123D24; /* Dark Green Background */
    font-family: Arial, sans-serif;
    color: whitesmoke;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Header */
header {
    text-align: center;
    margin: 20px 0;
}

#title {
    font-size: 2.5rem;
    font-weight: bold;
}

#subTitle {
    font-size: 1.2rem;
    color: whitesmoke;
}

/* Section Styling */
#section {
    background-color: #F5E1BE; /* Beige Card Background */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    width: 40%;
    margin: 20px auto;
    color: #333;
    text-align: center;
}

h2 {
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

button {
    background-color: #A67C52; /* Brown Button */
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #8B5E3B;
}

/* Footer */
footer {
    position: relative;
    background-color: #A67C52;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    flex-direction: column;

}

#links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

#links a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

#credits {
    background-color: #F5E1BE;
    border-radius: 5px;
    padding: 5px;
    border: none;
}
