/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to top, #a8e063, #56ab2f); /* Green gradient background */
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Styles */
header {
    background-color: transparent;
    color: white;
    padding: 20px;
    text-align: center;
}

.apple-header {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
}

p {
    font-size: 1.1em;
    margin-top: 5px;
}

/* Main Styles */
main {
    padding: 20px;
    flex: 1;
}

section {
    margin: 20px 0;
}

input {
    padding: 10px;
    font-size: 1.2em;
    width: 250px;
    margin-bottom: 20px;
    border: 2px solid #ff6347;
    border-radius: 5px;
}

button {
    padding: 12px 25px;
    background-color: #ff6347;
    color: white;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #ff4500;
}

/* Apple Image and Fact Section */
#apple-image {
    width: 150px;
    height: 150px;
    cursor: pointer;
    border-radius: 50%;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#apple-image:hover {
    transform: scale(1.1);
}

#apple-fact {
    font-size: 1.1em;
    color: #333;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: #ff6347;
    color: white;
    padding: 10px;
    font-size: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}
