* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)), url(TBG.jpg);
    animation: fadeIn 20s infinite;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}

@keyframes fadeIn {
    20% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(1.jpg);
        background-size: cover;
        background-position: center;
    }
    30% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(2.jpg);
        background-size: cover;
        background-position: center;
    }
    40% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(3.jpg);
        background-size: cover;
        background-position: center;
    }
    50% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(4.jpg);
        background-size: cover;
        background-position: center;
    }
    60% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(5.jpg);
        background-size: cover;
        background-position: center;
    }
    70% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(6.jpg);
        background-size: cover;
        background-position: center;
    }
    80% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(7.jpg);
        background-size: cover;
        background-position: center;
    }
    90% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(8.jpg);
        background-size: cover;
        background-position: center;
    }
    100% {
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(9.jpg);
        background-size: cover;
        background-position: center;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
}

h1 {
    color: white;
    font-size: 28px;
}

span {
    color: red;
}

ul, li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 20px;
}

ul, li, a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

ul, li, a:hover {
    color: orangered;
    transition: 0.5s;
}

button {
    border: none;
    background: red;
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.4s;
}

button:hover {
    transform: scale(1.3);
    cursor: pointer;
}

.par, .p1 {
    font-size: 100px;
    padding-left: 10%;
    padding-top: 5%;
    font-family: fantasy;
    color: orangered;
    -webkit-text-stroke: 0.5px black;
}

.one {
    font-size: 50px;
    font-family: serif;
}

footer {
    background: black;
    font-family: "Open Sans";
    padding-top: 40px;
    color: white;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p {
    max-height: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: white;
}

.socials a i {
    font-size: 1.1rem;
    transition: color .4s ease;
}

.socials a:hover {
    color: aqua;
}

.footer-bottom {
    background: black;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.socials img {
    width: 40px;
    height: 40px;
}

h3 {
    text-align: center;
}

.cp {
    text-align: center;
    font-family: serif;
    font-size: 15px;
}











