/* General styles for the body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: cyan;
    color: #333;
    text-align: center;
}

/* Header styles */
header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

/* Main content styles */
main {
    padding: 2rem;
    text-align: center;
}

/* Paragraph styling */
p {
    line-height: 1.6;
    font-size: 1rem;
}

/* nav Styling */
nav {
    padding: 0;
    margin: 0;
    background-color: #ADD8E6;
}
/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button styles */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}
