/* Base styles for the body to set the font and background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Style for the main heading (h1) */
h1 {
    color: #620662;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
}


/* Paragraph styles for a nice spacing */
p {
    padding: 0 20px;
    margin: 10px 0;
    font-size: 18px;
}

/* Footer styles for a clean look */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    font-size:14px;
    height:80px;
}

/* Styling links to stand out */
a {
    color: #009578;
    text-decoration: none;
}

/* Hover effect for links */
a:hover {
    text-decoration: underline;
}



