
/* Giving the body the specified background color, adding font sizes for the h1 and h3 elements we'll be using */
body {
    background: #f1f1f1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    font-size: 30px;
    margin-bottom:10 px;
    text-align:left;
    background-color: lightblue;
  }
  
  .navbar-brand {
    color: white;
    font-weight: bold;
    background-color: rgb(9, 185, 185);
    height: 100%;
    font-size: 25px;
    padding: 10px 10px;
  }
  
  .img-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  h3 {
    font-size: 30px;
  }
  
  img {
      display:block;
      margin-left:auto;
      margin-right:auto; 
  }
  
  p{
      text-align:left;
      font-size:20;	
  }
  
  .box-set {
    position: relative;
    height: 400px;
    background: darkgray;
  }
  
  .box {
    /* relative positioning */
    position: relative;
    width: 150px;
    height: 150px;
    background: #2db34a;
    border: 2px solid black;
  }
  
  .box-1 {
    top: 20px;
  }
  
  .box-2 {
    left: 40px;
  }
  
  .box-3 {
    right: 20px;
    bottom: -10px;
  }

  .bigWrapper{
      margin: 4% 6%;
  }

  .smallWrapper h2, h6{
    color: rgb(9, 185, 185);
  }

  .smallWrapper{
      padding: 40px 30px;
  }

  hr{
      margin: 20px 0;
  }

  .text{
    margin-bottom: 40px;
  }
  
  /* Giving our navbar some padding and a background color */
  .navbar {
    padding: 0 4% 0 8%;
  }
  
  /* Making our navbar li's inline-block elements this makes it so we can have multiple on the same line. Floats could have been used too */
  .navbar li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
  }
  
  /* Getting rid of the default link styles here */
  .navbar li a {
    color: #000;
    text-decoration: none;
  }
  
  /* Giving the .post element margin on 3 sides */
  .post {
    margin-top: 50px;
    margin-right: 100px;
    margin-left: 100px;
  }
  
  footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(9, 185, 185);
  }
  
  /* Adding media queries to show the drop-down, and hide the navbar when the screen is smaller than 480 pixels */
  @media (max-width: 480px) {
    .navbar li {
      padding: 10px;
    }
        
    .post {
      margin-right: 30px;
      margin-left: 30px;
    }
  
    .navbar ul {
      visibility: hidden;
    }
  
    #nav-select {
      visibility: visible;
    }
    
    .box-1 {
      background: purple;
    } 
  }
  .dropdown:hover  div.dropdown-menu {
    display: block;
  }