/* Reset margins and paddings for common elements */
body,
h1,
h2,
p {
    margin: 0;
    padding: 0;
}

/* Apply basic styles to the body */
body {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header styles */
header a {
    color: #fff;
    text-decoration: none;
}

/* Main container styles */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Hero section styles */
.hero {
    background-image: url(../index_files/hero-image.jpg)!important;
    background-size: cover;
    text-align: center;
    padding: 300px 0;
}

/* Section styles */
section {
    margin-bottom: 20px;
}

/* Heading 1 styles */
h1 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 20px;
}

/* Heading 2 styles */
h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #555;
    background-color: #333;
    padding: 10px;
    margin: 0;
    border-radius: 5px 5px 0 0;
    color: #fff;
}

/* Paragraph description styles */
.description {
    margin-top: 10px;
    font-size: 18px;
    color: #777;
}

/* Unordered list styles */
ul {
    list-style-type: none;
    padding: 0;
}

/* List item styles */
li {
    margin-bottom: 5px;
}

/* Anchor styles */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

/* Hover effect for anchor */
a:hover {
    color: #0056b3;
}

/* Background animation for body */
body {
    animation: backgroundAnimation 10s infinite alternate;
}

/* Keyframes for background animation */
@keyframes backgroundAnimation {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 100% 0%;
    }
}
