body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(pngwing.com.png);
    color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

header {
    background-image: url(back1.jpg);
    background-size: cover;
    color: #000000;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

nav {
    background-color: #000000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 8px;
    text-align: center;
    transition: 0.3s;
}

nav ul li {
    display: inline;
    margin: 0 20px;
    transition: 0.3s;
}

a {
    color: #000000;
    text-decoration: none;
    
    transition: 0.5s;
}

a:hover {
    color: #ff9191;
  
    transition: 0.5s;
}

nav ul li a {
    color: #ffffff;
    font-size: 1.1em;
    transition: 0.5s;
    
}

nav ul li a:hover {
    color: #000000;
    background-color: #f8f8f8;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

section {
    padding: 60px 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: hsl(0, 57%, 15%);
    transition: color 0.3s ease;
}

section h2:hover {
    color: #771d1d;
}

section p, section ul {
    font-size: 1.2em;
    color: #000000;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    margin: 10px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

section ul li:hover {
    transform: scale(1.05);
    color: #6e0a0a;
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 7px 0;
    margin-top: 600px;
    transition: background-color 0.3s ease;
    align-content: end;
    
}

footer:hover {
    background-color: #ffffff;
    color: #000000;
}
footer a {
    size: 20px;
}

