@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff;
    color: #000;
}

/* community-header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 10%;
    background: #1b1e39;
    transition: all .6s ease;
}

/* episode-navlist */
.navlist {
    display: flex;
    list-style: none;
}

.navlist a {
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin: 0 30px;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: all .6s ease;
}

.navlist a:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

#menu-icon {
    font-size: 32px;
    z-index: 10001;
    cursor: pointer;
    margin-left: 10px;
    display: none;
    color: #fff;
}

.nav-content{
    display: flex;
    align-items: center;
}

.nav-content a{
    display: inline-block;
    margin: 0 12px;
    margin-top: 8px;
    transition: all .6s ease;
}

section {
    padding: 80px 10% 80px;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7) url(../images/FOOTBALL\ BANTER.png);
    background-size: cover;
    background-blend-mode: darken;
    background-position: center;
}

.home{
    display: flex;
    flex-direction:column;
    align-items: center;
}

.home-text{
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    opacity: 0;
    transform: translateY(25px);
    animation: floatUp 1.5s ease-out forwards;
}

.text-span{
    color: #4097ac;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= ABOUT SECTION ==================== */
.about{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.about h2{
    text-align: center;
    margin-bottom: 3%;
    font-size: 45px;
    text-transform: capitalize;
    color: #000;
}

/* ================= FOOTER SECTION ==================== */
footer{
    color: #fff;
    background-color: #1b1e39;
}

footer .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
}

.footer .container{
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
    text-align: center;
}

.footer .menu li{
    display: inline-block;
    margin: 1em;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
}

.footer .menu a{
    transition: 0.3s;
    font-weight: 500;
    color: #fff;
}

.media-icons li{
    display: inline-block;
    margin: 0 10px;
    margin-top: 8px;
    transition: all .6s ease;
}

.copyright p{
    text-align: center;
    padding: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #1b1e39;
}