@charset "UTF-8";
    
body{
    background-color: dimgrey;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-size: 24px;
    color: white;
    font-style: normal;
    border: thin;
    border-color: white;
    align-content: center;
    padding-left: 25px;
}
iframe {
        border-style: solid;
        border-width: thin;
        border-color: darkblue
}

/* CONTAINER SETTINGS */
blockquote {
  padding: 20px;
  box-shadow:
    inset 0 -3em 3em rgb(0 200 0 / 30%),
    0 0 0 2px white,
    0.3em 0.3em 1em rgb(0 0 0 / 60%);
}
img{
    background-color: black;
    background-size:auto;
    padding: 25px;
    align-content: center;
    border-color: white;
    border-bottom-style: solid;
    border: thin;
    position: relative;
    width: 70%;
    
}
.container{
    position: relative;
    width: 70%;
    background-color: saddlebrown;
    padding: 5px;
    border: 3px solid thick rgba(0,100,0,1.00);
    margin: auto;
    border-color: darkgreen;
    overflow: scroll;
}

.img-container {
  float: left;
  width: 33.33%; /* three containers (use 25% for four, and 50% for two, etc) */
  padding: 5px; /* if you want space between the images */
}

.flex-container {
  display: flex;
  flex-wrap: nowrap;
  background-color: grey;
  box-shadow: 2px 6px 5px 5px darkgreen;
}

.flex-container .box {
  background-color: #f1f1f1;
  width: 50%;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

/* FOOTER SETTINGS */
.footer {   
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    background-color: grey;
    background-blend-mode: hard-light;
    text-align: center;
    font-size: 12px;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* SIDENAV SETTINGS */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* NEWSFEED FORMAT SETTINGS */
.newsfeed {
    padding: 5px 50px 5px 50px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-bottom-width: thin;
    border-color: grey;
    color: red;
    font: bold;
    font-size: 40px;
    background-color: rgba(79,75,75,0.30);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
/* TEXT FADE SETTINGS */
    .fade-text-in {
      opacity: 0;
      animation: fadeIn 30s ease-in-out forwards;
    }

    @keyframes fadeIn {
      0% { opacity: 0; }
      20% { opacity: 1; }
      95% { opacity: 1; }
      100% { opacity: 1; }
    }

    .fade-text-lg {
      opacity: 0;
      animation: fadeOutSlow 120s ease-in-out forwards;
    }

    @keyframes fadeOutSlow {
      0% { opacity: 0; }
      20% { opacity: 1; }
      95% { opacity: 1; }
      100% { opacity: 0; }
    }


    .fade-text {
      opacity: 0;
      animation: fadeInOut 15s ease-in-out forwards;
    }

    @keyframes fadeInOut {
      0% { opacity: 0; }
      25% { opacity: 1; }
      75% { opacity: 1; }
      100% { opacity: 0; }
    }