/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
        
        * {
            margin: 0;
            padding: 100;
            border: 0;
            box-sizing: border-box;
        }

        html, body {
           height: 100%;
        }

        body {
            background-color:#070b59; /* EDIT ME! CHanges bg color of entire page */
            color: #d390ed; /* EDIT ME! Changes text color of entire page */
            font-family: Arial, Helvetica, sans-serif;
            display: top;
            justify-content: center;
            align-items: center;
           
        }
        header {
          width: 780px;
          border: 0px;
          border-radius: 20px;
        }

        nav {
            background-color: #0583f2; /* EDIT ME! */
            text-align: center;
            width: 780px;
            position: sticky;
            border: 0px solid red;
            border-radius: 5px;
        }

        nav ul li {
            list-style: none;
            display: inline-block;
            padding: 0.75rem 0.5rem;
            margin: 0;
        }

        nav a {
            color: #acf2e5; /* EDIT ME! - colors the links in your navbar*/
            margin: 0;
            font-size: 1.25em;
        }

        nav a:hover {
            color:lightcoral; /* EDIT ME! - will change the hover on all links within the nav*/
            text-decoration: none; /* removes the underline on links on hover */
        }

        main{
            max-width: 75vw;
            margin: 0 auto;
        }


        h1, h2, h3, h4, h5, h6 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            text-align: center; /*remove this line if you do not want all headings to be centered! */
            color: #309ec1 /* EDIT ME - colors the headings */
        }

        p {
            line-height: 3ch;
        }

        @media screen and (min-width: 700px) {
            main {
                max-width: 50vw;
            }
        }
   
   div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 0px solid #ccc;
  width: 180px;
}

div.gallery-item:hover {
  border: 0px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}
