*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#FFC107;
    color:#111;
}

/*=========================
HEADER
=========================*/

header{
    width:100%;
    padding:20px 30px;
}

.logo{
    text-align:left;
}

.logo img{
    width:170px;
    height:auto;
}

/*=========================
HERO
=========================*/

.hero{
    max-width:900px;
    margin:0 auto;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.hero-logo{
    margin-bottom:7px;
}

.hero-logo img{
    width:340px;
    max-width:90%;
    height:auto;
    display:block;
    margin:auto;
}

.hero h2{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    font-size:19px;
    line-height:32px;
    margin-bottom:35px;
}

/*=========================
BUTTONS
=========================*/

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.buttons a{
    padding:18px 40px;
    border-radius:12px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.join{
    background:#111;
    color:#fff;
}

.feed{
    background:#fff;
    color:#111;
}

.buttons a:hover{
    transform:translateY(-5px);
}

/*=========================
FEATURES
=========================*/

.features{
    max-width:1200px;
    margin:70px auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.box h3{
    margin-bottom:10px;
}

/*=========================
FOOTER
=========================*/

footer{
    text-align:center;
    padding:30px;
    font-size:15px;
}

/*=========================
TABLET
=========================*/

@media (max-width:992px){

    .hero-logo img{
        width:280px;
    }

    .hero h2{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
        line-height:28px;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

}

/*=========================
MOBILE
=========================*/

@media (max-width:768px){

    header{
        padding:15px;
    }

    .logo{
        text-align:center;
    }

    .logo img{
        width:140px;
    }

    .hero{
        padding:15px;
    }

    .hero-logo{
        margin-bottom:5px;
    }

    .hero-logo img{
        width:220px;
    }

    .hero h2{
        font-size:28px;
        margin-bottom:10px;
    }

    .hero p{
        font-size:16px;
        line-height:26px;
        margin-bottom:25px;
    }

    .buttons{
        width:100%;
        flex-direction:column;
    }

    .buttons a{
        width:100%;
    }

    .features{
        grid-template-columns:1fr;
        margin-top:50px;
    }

}