/*---------------------------------------BODY-----------------------------------------------*/

body
{
    background-color: #FFF;
    font-family: Arial;
    margin: 0px;
}

/*---------------------------------------NAV-----------------------------------------------*/
nav
{
    background-color: #FFF;
    color: #4D4D4D;
    top: 0;
    width: 100%;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.navItem
{
    margin: 12px;
}

.navLink
{
    color: #4D4D4D;
    text-decoration: none;
}

.navLink:hover
{
    text-decoration: underline;
}

.menuIcon 
{
    cursor: pointer;
}
  
  /* The container <div> - needed to position the dropdown content */
.menuBlock
{
    position: relative;
    display: inline-block;
}
  
  /* Dropdown Content (Hidden by Default) */
.menuContainer
{
    background-color: #FFF;
    padding: 10px;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 0px 3px #BFBFBF;
    z-index: 1;
    visibility: hidden;
    flex-wrap: wrap;
    right: 0;
    border-radius: 4px;
}

.menuImageContainer
{
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
}

.menuImageContainer:hover
{
    background-color: #F2F2F2;
}

.menuImage
{
    max-height: 100%;
    min-width: 100%;
}

.menuImageP
{
    line-height: 1px;
}

 /*Show the dropdown menu (Javascript)*/
 .menuShow
 {
    visibility:visible;
 }

#bttContactMe
{
    background-color: #166DDF;
    color: #FFF;
    padding: 13px;
    border-radius: 3px;
}

#bttContactMe:hover
{
    background-color: #2E80EA;
}

#contactMeLink
{
    text-decoration: none;
}

/*----------------------------------------MAIN---------------------------------------------*/

main
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

#searchBar
{
    border-radius: 25px;
    min-height: 40px;
    min-width: 300px;
    width: 30%;
    border: 1px solid #166DDF;
}

#pTextPresentation
{
    font-size: 16px;
    margin: 10px;
    margin-left: 16px;
}

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

.buttonSearchBar
{
    border: 1px solid #FFF;
    background-color: #F2F2F2;
    padding: 13px;
    border-radius: 3px;
    margin: 13px 5px;
}

.buttonSearchBar:hover
{
    border: 1px solid #D9D9D9;
    background-color: #F2F2F2;
    padding: 13px;
}

.searchLink
{
    color: #4D4D4D;
    text-decoration: none;
}

/*---------------------------------------FOOTER--------------------------------------------*/

footer
{
    background-color: #F2F2F2;   /*Light grey*/
    border-top: 1px solid #D9D9D9;   /*Light grey*/
    color: #666;
    bottom: 0;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
}

.footerContent
{
    margin: 12px;
}

.footerText
{
    margin: 12px;
}


.footerLink
{
    color: #666;
    text-decoration: none;
}

.footerLink:hover
{
    text-decoration: underline;
}