* {
    margin: 0rem;
    padding: 0rem;
    font-family: "Inria Serif";
    text-decoration: none;
    color: #ffffff;
}

/* .8 rem minmuim for text */

/* present 4/30 @ 10am */

.middleText {
    text-align: center;
}

.spaceText {
    margin: 2rem 2rem;
}

.blackText {
    color: #000000;
}

.buttonText {
    font-size: 1.25rem;
}

.line {
    border-bottom: 0.1rem solid #000000;
    margin: 1rem 0rem;
}

.selectionBar {
    border: 0.2rem #000000;
    border-style: solid none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.listOfItems {
    display: inline;
    font-size: .9rem;
    border: 0.1rem #000000;
    border-style: none solid;
}

.listofItemsLink {
    margin: .5rem .2rem;
    display: inline-block
}

.listOfItems:hover {
    background: linear-gradient(to bottom right, #f63636, #9f0000);
}

.imageHolder1 {
    /* padding: 2rem 2.5rem; */
    text-align: center;
}

.descriptionContainer {
    margin: 2rem 1rem;
    text-align: center;
}

.descriptionText {
    margin: 1.8rem;
    text-align: center;
}

.desciptionHeader{
    font-size: 1.4rem;
    margin: 1rem;
    text-align: center;
}

.valuesList {
    margin: auto;
    max-width: 12rem;
}

.wrapper {
    margin: auto;
    max-width: 75rem;
    background: linear-gradient(#626262, #363636);
}

.line {
    border-bottom: 0.1rem solid #9f0000;
    margin: 1rem 0rem;
}

.footerContainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: auto;
    list-style: none;
}

.footerItem {
    padding: .5rem;
}

.background {
    background: linear-gradient(to bottom, #424242, #242424);
}

.containerLink {
    border: 0.2rem #000000;
    border-style: solid;
    text-align: center;
    padding: 4rem 0rem;
    margin: 2rem auto;
}

.containerLinkRestrict {
    margin: 2rem auto;
    max-width: 25rem;
    display: block;
}

.newsContainer {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2rem;
    justify-content: space-evenly;
}

.newsItem {
    border: 0.2rem solid #000000;
    min-width: 10rem;
    max-width: 10rem;
    padding: 1rem 3rem 8rem 3rem;
    text-align: center;
    text-wrap: wrap;
}

.contactInfromationItem {
    margin: auto;
    padding: 1rem;
    font-size: 1.25rem;
}

.newsTextBox {
    color: #000000;
    display: block;
    margin: 2rem auto;  /* auto centers horizontally */
    width: 60%;          /* or any fixed width */
    height: 10rem;   

}

.newsTitleBox {
    color: #000000;
    display: block;
    margin: .5rem auto;  /* auto centers horizontally */
    width: 60%;          /* or any fixed width */
    height: 1.5rem;   
}

.newsButton {
    display: block;
    margin: 1rem auto;  /* auto centers horizontally */
    width: 20%;          /* or any fixed width */
    height: 2rem;   
    color: #000000;
    border: none;
    font-size: 1.25rem;
}

.goBackButton {
    display: block;
    margin: 1rem auto;  /* auto centers horizontally */
    width: 20%;          /* or any fixed width */
    height: 2rem;   
    color: #000000;
    background-color: #ffffff;
    border: 0.1rem solid #000000;
    font-size: 1rem;
}

#logo {
    margin: auto;
    text-align: center;
}


@media (min-width: 48rem) {
  .selectionBar {
      border: 0.2rem #000000;
      border-style: solid;
      margin: 1rem auto;  
      text-align: center;
      max-width: 50rem;
  }

  .imageHolder1 {
      /* padding: 2rem 17.5rem; */
      text-align: center;
  } 

  .line {
      border-bottom: 0.1rem solid #9f0000;
      margin: 1rem auto;
      max-width: 75rem;
  }

  .wrapper {
    margin: auto;
    max-width: 75rem;
    background: linear-gradient(#626262, #363636);
    border: 0.2rem #000000;
    border-style: none solid none solid;
  }

  .containerLink {
    border: 0.2rem #000000;
    border-style: solid;
    text-align: center;
    padding: 4rem 0rem;
    margin: 2rem auto;
}

.containerLinkRestrict {
    margin: 2rem auto;
    max-width: 35rem;
    display: block;
}

.contactInfromationItem {
    margin: auto;
    padding: 1rem 11rem;
    font-size: 1.25rem;
}

}

  /* Testing Stuff Ignore Below For Final*/

.flex-container {
    /* We first create a flex layout context */
    display: flex;
    
    /* Then we define the flow direction 
       and if we allow the items to wrap 
     * Remember this is the same as:
     * flex-direction: row;
     * flex-wrap: wrap;
     */
    flex-flow: row wrap;
    
    /* Then we define how is distributed the remaining space */
    justify-content: space-around;
    
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .flex-item {
    background: tomato;
    padding: 5px;
    width: 200px;
    height: 150px;
    margin-top: 10px;
    line-height: 150px;
    color: white;
    font-weight: bold;
    font-size: 3em;
    text-align: center;
  }