@media only screen and (max-width: 37.5em) {
    picture img {
        width: 80px;
    }

    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 0.75rem;
        color: skyblue;
    }

    h3 {
        font-size: 1.2rem;
        color: black;
    }

/*-----------------Navigation bar Hamburger button--------------------*/
    nav > button {
        margin: 5px;
        display: inline-block;
        width: 100%;
        background-color: transparent;
        border: none;
        font-size: 1.6rem;
}

    nav {
        background-color: #d6d3d2;
        display: block;

    }

    nav  ul {
        list-style-type: none;
        text-align: center;
        display:none;

    }

    /*This line belongs to the toggle part in JS, andit makes the fuction work*/
    nav ul.responsive {

        display: block;
    }

    nav ul li  {
        display: block;
        border-top: 1px solid ;

    }









/*------------------footer------------------------*/
    footer{
        margin-top: 5px;

    }

    .grid{


        grid-template-columns: 1fr  ;

    }








}
