fieldset {
    border: 1px solid #444;
    margin: 0 0.5rem 2rem 0.5rem;
    padding: 1rem;

}

label input{
    display: block;
    width: 100%;
}

input[type="text"],
input[type="tel"]{
    margin: 0.125rem 0 1.2rem 0;
}

textarea {
    margin: 0.125rem 0 1.2rem 0;
    width: 100%;
}



input[type="submit"]{
    background-color: darkseagreen;
    margin: 0 0.55rem;
    
}

input[type="reset"]{
    background-color: lightcoral;

}

.button.hover {
    border-radius: 0.5rem;
    color: white;
    width: 5rem;
   
    
}

.button.hover {
    filter:opacity(0.5);
}

body {
    background-color:cornflowerblue
}

/* Example */
  


main {
    margin: 0 0.5rem 0 0.5rem;  /* avoid content touching the edge of the screen */
}

#menu a:link {
    color: blue; 
    /* change to suit your design */

    text-decoration: none;  
    /* remove default underline */
}

#menu a:visited {
    color: gray;  

    /* less vivid color, must look "less interesting" than the a:link color 
        basically, this style must suggest "been there, seen that" */
}

#menu a:hover {
    text-decoration: underline; 
    /* add underline on hover to show it is a link */
}

#menu a:active {
    color: magenta; 
    /* only shows when clicking the mouse */
}

main a:link {
    color: blue;
    text-decoration: none;
}

main a:visited {
    color: gray;
}

main a:hover {
    text-decoration: underline;
}

main a:active {
    color: magenta;
}

footer a:link {
    color: blue;
    text-decoration: none;
}

footer a:visited {
    color: gray;
}

footer a:hover {
    text-decoration: underline;
}

footer a:active {
    color: rgb(0 255 234);
}




/* Style */

body { 
    font-family: Roboto,"Helviteica Neue", Helvetica, Arial, sans-serif; 
    font-weight:400; 
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #D5C6E0}

h1 { font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 900; font-style: normal; color: white}

footer p{ text-align: center;}

#logo{
    width: 70px;
    height: auto;}

header{
    background-color: #AAA1C8;
    border: 1px solid #AAA1C8;
    margin: 0 0 2rem 0; /* values are clockwise: 0 top, 0 right, 2rem bottom, 0 left */
    padding: 1rem;}

 nav ul{
    list-style-type: none;}

a {
    text-decoration: none;}

    main { margin-left: 6px; }


footer { 
    background-color: #AAA1C8; 
    border: 1px solid #457B7E; 
    padding: 20px;
}
.thumbnails{
    display: flex;}

h1{ 
    margin-left: 1rem;
    font-size: 115%;
    color: black; }

    div{ 
        position: relative;
    }
    
span{ 
    margin-left: 0rem;
    font-size: 91%;
    left: 0.5rem;
    
}

header span{ 
    right: 30px;
    top:-30px;
    font-weight: bold;
    font-size: 14.95px;
}



.container p{ margin-left: 1rem;
    color: black;
}


 

       

/* START NAVIGATION */
button#menu-button {
    height: 2rem;
    width: 2rem;
    display: block;
    border: none;
    background-image: url(../img/hamburger-svgrepo-com.svg); 
    background-repeat: no-repeat;
    background-size: cover;
}
.icon svg {
    width: 2rem;
    height: auto;
}
#menu {
    display: none;
} #menu.show-nav {
    display: block;
}  
 /* Add this code to the selector created in Step 3.1 above */
    
 #menu.show-nav {
    position: absolute;  /* position the menu */
    z-index: 100;
    top: 0;
    right: 0.6rem;
    
    background-color: rgb(255, 255, 237);  /* style the dropdown menu */
    padding: 1rem;
    width: 95%;
    margin: 0 auto;
    border: 1px solid #444;
}  
#menu-button {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    padding: 0;
    background-color: transparent;
    z-index: 10;
}
#menu-button:hover {
    cursor: pointer;
    }
    .hide-text {
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        padding: 0;
    }
    .icon a img {
        width: 2rem;
        height: auto;
    }
    li.icon {
        width: 100%;
        height: 1.8rem;
        margin: 1.3rem 0;  /* space apart for easier finger tapping */
      }
      li.icon a {
        display: flex;  /* place logo and span side by side */
        justify-content: start; /* align left */
        align-items: center; /* vertically align */
        
        font-family: arial, helvetica, sans-serif; /* style span text as desired */
        font-weight: bold;
        text-decoration: none;  /* remove underline */
        font-size: 1.5rem;
        margin: 0; 
        height: 1.5rem;
    }
    @media only screen and (min-width: 64em) {
        button#menu-button {
            display: none;
        }

        #menu {
            display: flex;
        }
    }