.flex-1 {
  flex: 1;
}

/* .col {
  padding-right: 0px;
  padding-left: 0px;
} */

.pageWrapper {
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.container {
  padding: 0px;
  display: inline;
}

.previewImg {
  border: 1px solid gray;
  max-width: 100%;
  padding: 1%;
  align-items: flex-start;
}

.previewText {
  vertical-align: middle;
  height:100%;
}

.previewLink {
  text-align: right;
}

.previewLink:hover {
  transform: scale(1.01);
  transition: 0.1s;
  color: blue;
}

pre {
  white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
}

body {
    font-family: "Chicago", monospace;
    margin: 0;
    padding: 20px;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #f1f1f1; */
    background-image: url('/Assets/test-background-img-2.png');

  
    .signature {
      font-style: italic;
      font-size: 12px;
      color: #212121;
      padding-top: 15px;
      transition: all 0.3s ease-in-out;
  
      &:hover {
        color: white;
      }
    }
  
  }
  
  li {
    display: inline;
  }
  
  .stylish {
    /* font-weight: bolder; */
    font-size: 20px;
    font-family: "Chicago", monospace;
    color: black;
    /* background-image: url('/Assets/test-background.jpg'); */
    text-transform: lowercase;
  
  }
  
  .stack {
    cursor: pointer;
  }
  
  .navoptions {
    display: none;
    padding: 5px;
    animation: fadeIn 0.25s;
    justify-content: space-between;
    padding-left: 6%;
    padding-right: 6%;
    background-color: #f1f1f1;;
    border: 1px solid black;
    width: fit-content;
  }

  .navoptions .link {
    padding-left: 15px;
    padding-right: 15px;
    padding-top:10px;
    padding-bottom:10px;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  /* @keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
  } */
  
  
  
  .link{
    cursor: pointer;
  }
  .link:hover {
    color: rgb(50, 50, 50);
  }
  
  .navigationWrapper {
    /* position: sticky;  */
    top: 0; 
    z-index: 9999;
    /* display: flex;
    align-items: center; */
    justify-content: space-between; 
    text-transform: lowercase;
    /* padding: 20px; */
    /* background-color: #f1f1f1; */
    color: gray;
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
    border: 1px solid #000;
    background-color: #f1f1f1;
    transition: 0.4s;
    min-height: 50px;

    display: flex;
    align-items: center;
  
    .logoWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      /* height: 200px; */
  
  
      .logo {
        padding-left: 4px;
        color: #fcba03;
      }

    }
  
    .navigation {
      display: flex;
      list-style-type: none;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
      margin-bottom: 10px;
  
      .li {
        opacity: 1;
        list-style-type: none;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        display: inline;
        float: left;
      }

      .mailingList {
        float: right;
        cursor: pointer;
      
      }

      .mailingList:hover {
        transform: scale(1.03);
        transition: 0.1s;
        color: blue;
        cursor: pointer;
      }
  
  
  
  
  
    }
  }
  
  
  * {
    box-sizing: border-box;
  }
  
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    float: left;
    width: 75%;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
  }
  
  /* Right column */
  .centercolumn {
    /* text-align: center; */
    float: center;
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    transition: 0.4s;
  }
  
  /* Fake image */
  .contentimg {
    /* background-image: url('/Assets/test-background-img-2.png'); */
    /* background-color: gray; */
    border: 1px solid gray;
    width: 100%;
    padding: 1%;
    /* border-radius: 5px; */
  }
  
  /* Add a card effect for articles */
  .card {
    /* background-color: white; */
    background-color: #f1f1f1;
    padding: 20px;
    margin-top: 20px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border: 1px solid #000;
    padding-left: 6%;
    padding-right: 6%;
    font-family: "Chicago", monospace;


  }
  
  .photocreds {
    text-align: right;
    font-size: 10px;
  
  }
  
  .quote {
    text-align: center;
    font-weight: bolder;
  
  }
  
  .quotetext {
    font-style: italic;
  }

  .endButtonsCard {
    text-align: center;
    font-size:20px;
  }

  .row {
    margin-left:0px;
    margin-right:0px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    float: center;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
    width: 100%;
    border: 1px solid black;
  
  
  }

  .brother {
    color: #ddd;
  }
  
  
  br {
    display: block;
    margin-bottom: 1px;
    font-size: 2px;
    line-height: 1px;
  }

  .accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    transition: max-height 0.2s ease-out;
  }
  
  .carouselTitle
  {
    font-weight: bolder;
  }

  .construction
  {
    text-align: center;
  }

  .fa-2xl {
    line-height: 0px;
            /* line-height: -50px; */
            /* vertical-align: middle; */

  }
  
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
  
    .leftcolumn,
    .rightcolumn {
      width: 100%;
      padding: 0;
    }

    .stylish {
      /* font-weight: bolder; */
      font-size: 20px;
      font-family: "Chicago", monospace;
      color: black;
      /* background-image: url('/Assets/test-background.jpg'); */
      text-transform: lowercase;
      transition: 0.4s;
    }

    .navbar2 {
      position:sticky;
      top: 0;
      z-index: 9999;
    }
  }

  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media (max-width: 500px) {
    .navoptions {
      display: none;
      padding: 5px;
      animation: fadeIn 0.25s;
      justify-content: space-around;
      padding-top: 15px;
      padding-bottom: 15px;;
      background-color: #f1f1f1;;
      border: 1px solid black;
      width: 100%;
    }

  }

