* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: "Catamaran", Arial, Helvetica, sans-serif;
}


/*-----------Header Section--------------------*/
header {
    max-width: 100%;

    background-color: #71683C;

    display: flex;

}

picture {
    margin: auto;
    padding: 2rem;


}
picture img {
    width: 200px;
    height: auto;

}

.headings {
    flex: auto;

    /* for the children h1, h2 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


h2 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #DA916E;
    font-style: italic;

}

h4,.weather{
    color: #42221D;
    font-size: 1.1em;
    background-color: #F8F3E2;
    height: 20px;
}





div img {
    width: 50px;

    margin-top: 10px;
    margin-right: 10px;


}


/*---------------NAVIGATION BAR--------------*/

nav > button {
    display: none;
}

.navigation {

    list-style-type: none;
    overflow: hidden;
    background-color: #F8F3E2;
    text-align: center;
}

li {
    display: inline-block;
}

li a {
    display: block;
    color: #3a4048;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #764248;
    color: #ffffff;
}




main,footer {
    max-width: 80%;
    margin: auto;

}


nav li.active{
    background-color:#DA916E;
    
}


/*-------------------HOME PAGE--------------------------------*/

main {
    box-sizing: border-box;

}

.grid{

    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-template-rows: 1fr 1fr ;
    grid-gap: 20px;
}

.grid div{
    border: 1px solid #DA916E;
    background-color: #ffffff;

    border-radius: 3px;

    padding:0.2em;
    color:#3a4048;
}


.gallery {
    grid-template-columns: 1fr 1fr ;
    width: 100%;
    display: grid;
}

.gallery:hover {box-shadow: 1px 1px 10px #42221D;}


/*----------------footer-------------------------*/

footer{
    margin-top: 10px;
    background-color: #71683C;
    color: #ffffff;
}

footer > p {
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

footer > p > a {
    color: #ffc90c;
}
