/* 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." */



body {
  font-family: 'Barlow', sans-serif;
  margin: 0;
  background-color: #001514;
  background-image: url('cells floor desk.png');
  background-size: 100%;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* text */
h1 {
  font-family: 'Bitter', Georgia, serif;
  text-align: center;
  font-size: 25px;
  color: #001514;
}

h2 {
    font-family: 'Bitter', serif;
  text-align: center;
  font-size: 20px;
  color: #001514;
}

h3 {
  font-family: 'Barlow', sans-serif;
  text-align: left;
  font-size: 20px;
  color: #001514;
  margin: 0;
}

p {
  font-family: 'Barlow', sans-serif;
  text-align: left;
  font-weight:300;
  font-size: 15px;
  color: #001514;
}


            #container {
                max-width: 1000px;
                min-height: 100%;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }


            #background {
                background-color: #001514;
            }

 
            /* navigation section!! */
            #navbar {
                height: 60px;
                background-color: #FFFFFF;
                /* navbar color */
                width: 100%;
                position: fixed;
                border-bottom: 2px solid #001514;
            }



            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 17px;
                font-family: 'Bitter';
                font-size: 20px;
            }

            /* navigation links*/
            #navbar li a {
                color: #001514;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                padding: 5px 17px;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #66CC00;
                text-decoration: none;
            }

            #navbar .active {
                border: 2px solid #001514;
                border-radius: 0px;
                padding: 5px 10px;
            }

            #flex {
                display: flex;
            }

            main {;
                flex: 1;
                padding: 20px;
                margin-top: 60px;
                order: 2;
            }


            footer {
                background-color: #FFFFFF;
                border-top:2px solid #001514;
                /* background color for footer */
                width: 100%;
                height: 20px;
                padding: 10px;
                text-align: center;
                text-decoration:none;
                /* this centers the footer text */
            }
            
            #footer a {
                color: #001514;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #footer a:hover {
                color: #66CC00;
                text-decoration: none;
            }
            
/*mobile*/
@media screen and (max-width:768px) {

body {
  /*visibility:hidden;
  overflow-x:hidden;*/
  background-size:100%;
  background-image: url('cells floor mob.png');
  background-attachment: fixed;
}
}