/* 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 {
  background-image: url('backgroundpin.jpg');
  background-repeat: no-repeat;
  background-size: Cover;
  Color:white;
  text-shadow: 2px 2px 2px #000000;
}
.intro {
  Background-color:RGBA(255,255,255,0.3);
}

.secondary {
  Background-color:RGBA(255,255,255,0.1);
}
  
a:link{
  color: #B7C9B1;
}

a:visited{
  color: #96AB8A;
}

div.intro {
  max-width: 1000px;
  margin: auto;
}

.secondary {
  max-width: 1000px;
  margin: auto;
}

.footer {
  position: sticky;
  left: 0;
   bottom: 0;
   width: 100%;
   Background-color:RGBA(255,255,255,0.2);
}    

@media screen and (max-width: 500px) {
  .desktop-and-tablet {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
    .desktop-and-tablet {
       display: none;
    }
}

.banner img {
  width: 990px;
  height: 275px;
  object-fit: cover;
  border-style: solid;
  border-width: 5px;
  border-color: RGBA(255,255,255,0.35);
}
  
 .OCs {
   Display: flex;
 flex-direction: row; 
    margin:auto;
    flex-wrap: wrap; 
    justify-content: space-evenly; 
    align-content: space-around;
    width: 250px; 
    height: 250px; 
}
 
  .OCs div {
  background-color: white;
  font-size: 24px;
  max-width: 100vw; 
  max-height: 100vh;
}
  
  
  
  