/*####################################################
    
    Table of Contents:
        Section 1-  Global
        Section 2-  Header
        Section 3-  Body
        Section 3-  Footer
        Section 5-  Screen Sizes/ Animations
        
####################################################*/

/*#region     Section 1-  Global*/


*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    
}

body{
    background-color: #f2f2f2;
    
}
/*#endregion*/



/*#region     Section 2-  Header*/

    nav{
        text-align: center;
        background-color: #1f1646;
        padding-bottom: 10px;
    }

    
    .logo{
        width: 60%;
        height: auto;        
    }


    .pageLinks{
        color: #36b0c9;
        font-weight: bold;
        font-family: Arial;
        text-decoration: none;
        font-size: 2vw;
        padding: 5px 15px;
        border-radius: 10px;
        cursor: pointer;
    }

    
    .social{
        margin: 10px 3%;   
        letter-spacing: 20px;
        text-align:end;
    }


    .dropbtn {
        margin: 10px 3%;
        float: left;
        cursor: pointer;
    }
      
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    
    .dropdown-content a {
        color: black;
        padding: 12px 0px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    
      
    .show {
        display: block;
    }


    .dropbtn{
        float: left;
        display: none;
    }

/*#endregion*/



/*#region      Section 3-  Body */
    #greeting{
        text-align: center;
        font-weight:bold;
        padding: 1vw;
    }


    .main{
        width: 80%;
        margin: 3vh auto;
        text-align: justify;
        font-size: 1.5em;
        padding: 1em;
        box-shadow: 0px 8px 16px 0px #e1e1e1;
    }


    .main h4{
        text-align: left;
    }

    
    .image{
        width: 30ch;
        height: auto;
        float: left;
        margin-right:1.5vh;
        border-radius: 10px;
    }

    .bloglinks{
        width: 80%;
        margin: 5vh auto;
        text-align: center;
        text-decoration: none;
        
    }

    .bloglinks a{
        color: #000;
        margin: .5vh;
        text-align: center;
    }


    .bloglinks img{
        width: 15ch;
        height: auto;
        cursor: pointer;
    }



    .language{
        display: inline-block;
    }


/*#endregion*/



/*#region     Section 4-  Footer*/

    footer{
        text-align: center;
        background-color: black;
        opacity: 80%;
        padding: 1.5% 0;
        font-size: 18px;
    }


    footer a{
        color: white; 
        margin: 2.5%;
    }




    .footerLinks,
    .socialLinks{
        width: 33%;
        display: inline-block;
        color: #fff;
        vertical-align: middle;
    }


    .socialLinks a{
        margin:3%;
    }


    #footerLogo{
        width: 5ch;
    }


    #copyright{
        font-size: 1.5vh;
        color: #fff;
    }


/*#endregion*/



/*#region     Section 5-  Screen Sizes/ Animations*/




.pageLinks:hover{
    background-color: #fff;
    color:#000;
}


@media only screen and (max-width: 900px){
    .pageLinks{
        display: none;
    }
    .dropbtn{
        display: initial;
    }    

    .image,
    #post1_img{
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 2vh;
        margin-left: none;
        margin-right: none;

    }
    .footerLinks a,
    .socialLinks a{
        display: block;
        margin-bottom: 1vh;
    }
}


.menuBar:onclick:onclick{
    display: initial;
}


.footerLinks a:hover,
.socialLinks a:hover,
.bloglinks :hover
{
    text-decoration: underline;
    font-weight: bold;
}

/*#endregion*/
