/* General Styles */
body {
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5rem;
    color: #333;
}

/* Masthead and Header Styles */
.mastheadavater {
    height: 20px;
    text-align: center;
    align-items: center;
}

.header {
    text-align: center;
    padding: 20px 0;
}

/* Footer Styles */
.footer-basic {
    padding: 20px 0;
    background-color: black;
    color: white;
    text-align: center;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-basic .list-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer-basic li {
    padding: 0 10px;
}

.footer-basic ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-basic ul a:hover {
    opacity: 1;
}

.footer-basic .social {
    text-align: center;
    padding-bottom: 10px;
}

.footer-basic .social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-basic .social > a:hover {
    opacity: 1;
}

.footer-basic .copyright {
    margin-top: 10px;
    font-size: 16px;
    color: #aaa;
}

/* Animation Styles */
.animation1 {
    animation: waqar 8s linear infinite;
    text-align: center;
}

@keyframes waqar {
    0% {
        transform: rotateY(0deg);
        color: red;
    }
    10% {
        color: yellow;
    }
    20% {
        color: purple;
    }
    30% {
        color: teal;
    }
    40% {
        color: olive;
    }
    50% {
        color: green;
    }
    60% {
        color: red;
    }
    70% {
        color: aqua;
    }
    80% {
        color: silver;
    }
    90% {
        color: pink;
    }
    100% {
        transform: rotateY(360deg);
        color: red;
    }
}
