body{
    width: 90%;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
}


.logo{
    display: none;
}

.menu-icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon{
    width: 30px;
    margin-left: 20px;
}

.user-settings p{
    display: inline;
}

.user-settings{
    display: none;
}

.profile-icon{
    background-color: purple;
    color: #fff;
    padding: 6px 11px 6px 11px;
    border-radius: 50%;
}

.hero-section{
    margin-bottom: 60px;
    border-bottom: 2px #999 solid;
}

.slogan{
    text-align: center;
}

.slogan p{
    font-size: 20px;
    color: #555;
}

.btns a{
    text-decoration: none;

}

.btn-1 {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    background-color: #3a52d8;
    color: white;
    width: 150px;
    padding: 20px;
    font-size: 15px;
    font-weight: bolder;
    border-radius: 5px;
    margin-bottom: 10px;
    text-decoration: none;
}

.video-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.input-box{
    min-width: 20%;
    padding: 18px;
    border: 2px #999 solid;
    border-radius: 5px;
    margin-right: 20px;
}

.btns{
    margin-bottom: 30px;
    display: block;
}

.join-btn{
    display: inline;
    color: #888;
    border: none;
    background-color: #fff;
    font-size: 20px;
    padding: 5px;
}

.hero-section .info-text{
    display: none;
}


.img-container{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.supporting-section-text{
    text-align: center;
}

.supporting-section-text h2{
    font-size: 25px;
    font-weight: normal;
    color: #222;
}

.supporting-section-text p{
    font-size: 17px;
    font-weight: normal;
    color: #222;
}

.info-text{
    font-size: 17px;
}

.info-text a{
    color: blue;
    font-size: 17px;
}


@media(min-width: 720px){
    body{
        width: 100%;
    }

    .navigation{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 97%;
        margin: 10px auto 0 auto ;
    }
    .logo{
        display: inline-block;
        width: 40%;
    }

    .menu-icons{
        display: flex;
        justify-content: flex-end;
        width: 40%;
    }

    .menu-icons p{
        margin-right: 5px;
        padding: 5px;
    }

    .user-settings{
        display: flex;
        align-items: center;
    }
    .profile-icon{
        margin-left: 10px;
    }

    .container{
        display: flex;
        justify-content: space-between;
        height: 60vh;
        width: 95%;
        margin-left: auto;
        margin-top: 100px;
        align-items: center;
    }

    .hero-section{
        max-width: 46%;
        margin-left: 0px;
        padding: 10px;
    }

    .slogan{
        text-align: left;

    }

    .slogan h1{
        font-size: 45px;
        margin-bottom: 0px;
        line-height: 55px;
    }

    .slogan p{
        margin-top: 25px;
        margin-bottom: 55px;
        line-height: 30px;
    }

    .btns{
        display: flex;
        align-items: flex-start;
    }

    .btns a{
        margin-right: 10px;
        height: 15px;
        margin-right: 25px;
    }

    .input-box{
        width: 45%;
        padding: 18px;
    }

    .supporting-section{
        max-width: 45%;
        margin: auto;
        padding: 10px;
        height: vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }



    .btns .info-text{
        display: block;
    }
    

    .supporting-section-text{
        text-align: center;
    }

    .img-container{
        margin-bottom: 5px;
    }

    .supporting-section .info-text{
        display: none;
    }

    .hero-section .info-text{
        border-top: 2px solid #999;
        padding-top: 30px;
        display: block;
    }

    .hero-section{
        border-bottom: none;
    }

    .img-1{
        width: 32px;
    }

}