*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;  /*helps to navigate to a section of the website as mentioned in the navbar*/
}



/* Navbar ==============================================================*/
.navbar{
    display: flex; /*flex helps to bring things in a row*/
    align-items: center;
    position: sticky; /*to make the navbar stick to the page  */
    top: 0;
}

.navbar::before{
    content: "";
    background-color: rgb(243, 241, 235);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.8;
}

/* navigation bar: logo and image */
.logo{
    margin: 6px 10px;
}

.logo img{
    height: 53px;
    margin: 0px 3px;
    border-radius: 40px;
}

/* navigation bar: list styling */

.navbar ul{ /*(#abc xyz) means that access xyz which is under the parent abc, not all the xyz in the html code*/
    display: flex;
}

.navbar ul li{
    height: 100%;
    list-style: none;
}

.navbar ul li a{
    display: block;
    text-decoration: none;
    color: black;
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.navbar ul li a:hover{
    color: black;
    background-color: #0a440d51;
}



/* HOME ============================================================================== */
#home::before{
    content: "";
    position: absolute;
    background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSj10JP42Xu6imfxzOfEZUnk2fTPGnmN_0ZqA&usqp=CAU) no-repeat center center/cover;
    height: 60%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;   
}

#home{
    display: flex;
    flex-direction: column;
    height:430px;
    justify-content:center;
    align-items: center;
}

.name{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 2.5em;
}

#home p{
    font-family: 'Raleway', sans-serif;
    font-size: 1.2em;
}

.p_first{
    padding: 15px 0 0 0;
}

#login_sec{
    display: flex;
    margin-top: 30px;
}

#login_sec .box{
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.button {
    display: inline-block;
    padding: 1em 2em 1em 2em;
    letter-spacing: 0.10em;
    margin-top: 2em;
    padding: 1.40em 3em;
    background: rgb(16, 88, 16);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    color: #FFF;
}

.button-alt {
    padding: 1em 2em;
    border-color: rgba(0, 0, 0, .8);
    color: #FFF;
}

ul.actions li {
    display: inline-block;
    padding: 0em 0.50em;
}

/* about=============================================================== */
#about{
    display: flex;
    margin: 50px 80px;
    height: 600px;
}

#about .box{
    padding: 19px;
    margin: 85px 10px;
    border-radius: 20px;
    background-color: rgba(239, 252, 241, 0.67);
    width: 50%;
    height: 360px;
}

.about_heading{
    text-align: center;
    font-family: 'Inter', sans-serif;
    margin: 10px 0;
    font-size: 1.3em;
}

.about_content{
    text-align:justify;
    font-family: 'Raleway', sans-serif;
    padding: 15px;
    font-size: 1em;
    line-height: 1.8;
    margin: 20px 0;
}



/* videos================================================================================= */
#videos{
    
    background-color: rgb(243, 241, 235);
    height: 800px;
}

.vid_div{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(7, 41, 7, 0.644);
}

.vid_head{
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: white;
}

.vid_content{
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding-top: 15px;
    font-size: 1.2em;
    color: white;
}

.vid_content a{
    text-decoration: none;
    color: rgb(246, 255, 0);
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.vid{
    display: flex;
}

.vid .box{
    padding: 19px;
    border-radius: 20px;
    width: 50%;
    margin: 70px 0;
}



/* footer==================================================================== */
/*FOOTER*/
.footer-dark {
    padding: 50px 0;
    color: #f0f9ff;
    background-color: #021703e9;
}

.footer-dark h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-dark ul {
    padding: 0;
    list-style: none;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.footer-dark ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
}

.footer-dark ul a:hover {
    opacity: 0.8;
}


.footer-dark .item.text {
    margin-bottom: 36px;
}


.footer-dark .item.text p {
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-dark .item.social {
    text-align: center;
}


.footer-dark .item.social>a {
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    color: #fff;
    opacity: 0.75;
    font-family: 'Inter', sans-serif;
}

.footer-dark .item.social>a:hover {
    opacity: 0.9;
}

.footer-dark .copyright {
    text-align: center;
    padding-top: 24px;
    opacity: 0.3;
    font-size: 13px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

#copyright {
    overflow: hidden;
    padding: 5em 0em;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#copyright p {
    text-align: center;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
}

#copyright a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

.container {
    overflow: hidden;
    margin: 0em auto;
    width: 1200px;
}

.row{
    display: flex;
    justify-content: center;
    
}

.arrange{
    align-items: center;
    justify-content: center;
    width: 30%;
    text-align: justify;
}








