/*stylesheet.css */
* {
    box-sizing: border-box;
  }
  
  .light_text{
    color:#fafafb;
}

.continue_text{
  color:#13c4a5;
  font-family: sans-serif;
}

.dark_background{
    background:rgb(32, 32, 32);
}
  .social_padding{
    padding-right:5%;
}
  /* Style the body */
  body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }
  
  @font-face {
    font-family: "pacifico";
    src: url(./pacifico.woff2);
    }
  @font-face{
    font-family: "Roboto-Bold";
    src: url(./Roboto-Bold.ttf)
  }
  /* Header/logo Title */
  .header {
    padding: 200px;
    text-align: center;
    background-image:url(DSC_9457.JPG);
    -webkit-background-size:cover;
    background-size:cover;
    background-position:center center;
    text-align:center;
    color: black;
    font-family:pacifico, sans-serif;
  }
  
  /* Increase the font size of the heading */
  .header h1 {
    font-size: 50px;
    font-family:Roboto-Bold, sans-serif;
  }

  .header h5 {
    color: lightslategray;
  }

  .header h7 {
    font-weight:bold;
    font-family:Roboto-Bold, sans-serif;
    color: lightslategray;
  }
  .header p {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 20px;
  }
  
  /* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
  .navbar {
    overflow: hidden;
    background-color: #333;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
  }
  
  /* Style the navigation bar links */
  .navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 2px 5px;
    text-decoration: none;
  }
  
  
  /* Right-aligned link */
  .navbar a.right {
    float: right;
  }
  
  /* Change color on hover 
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }*/
  
  /* Active/current link */
  .navbar a.active {
    background-color: #666;
    color: white;
  }
  
  /* Column container */
  .row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
  }
  
  /* Create two unequal columns that sits next to each other */
  /* Sidebar/left column */
  .side {
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    background-color: #f1f1f1;
    padding: 20px;
  }
  
  /* Main column */
  .main {   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
  }

  .card {
    height: 350px;
    width: 350px;
    max-width: 30%;
    margin: 8px;
    padding: 10px;
    position: relative;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
  }
.card > img{
  width: 100%;
  text-align: center;
}
  
  /* Fake image, just for this example */
  .fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
  }
  
  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .row {   
      flex-direction: column;
    }
  }
  
  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 400px) {
    .navbar a {
      float: none;
      width: 100%;
    }
  }

  /* The "show" class is added to the filtered elements */
.show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }
  
  /* Add a grey background color on mouse-over */
  .btn:hover {
    background-color: #ddd;
  }
  
  /* Add a dark background color to the active button */
  .btn.active {
    background-color: #666;
     color: white;
  }