@font-face {
  font-family: Lato;
  font-style: normal;
  src: url('Airstream-webfont.woff') format('woff');
}

.body-container {
  display: flex;
  flex-direction: column;
  margin: 3%;
  margin-top: 0px;
}
.youtube-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.banner-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #2b303a;
  max-width: 1600px;
}

.banner {
  text-decoration: none;
  background-color: #AFF;
  color: #2b303a;
  padding: 0.9%;
  border-radius: 6px 4px 15px 4px;
  font-size: 100%;
  margin: 1px;
  min-width: 55px;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.title-project{
  display: flex;
  flex-direction: row;
  h1 {
    margin:auto;
  }
  #page-link {
    margin-top: auto;
  }
  #status {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    h2 {
      margin: 0px;
    }
  }
}

.banner:hover {
  text-decoration: none;
  background-color: #2ff;
}

.banner a:visited {
  text-decoration: none;
}

.banner a:link {
  text-decoration: none;
}

#name:hover {
  background-color: #aff;
}


h1 {
    text-align: center;
    font-family: 'Lato';
    font-size: 100px;
    margin: 10px;
    
    /*font-family: Arial, Helvetica, sans-serif;*/
}

ul 
{
    list-style-type: circle;
}

.indent
{
    margin-left: 60px;
}

/* for the banner ///////////////////////////////////////////////*/
body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: linear-gradient(205deg, white, cyan);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin: auto;
  height: 100%;
  min-height: 100vh;
  max-width: 1600px;
}

.content {
  
  padding-left: 5%;
  padding-right: 5%;
}
  span.spamprotection {display:none;}

  head {
    font-family: Arial, Helvetica, sans-serif;
  }


  footer {
    text-align: center;
  }


#images{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.image{
  width:31%;
  transition: transform .2s;
  border-radius: 6px 4px 15px 4px;
  padding: 2px;
}
.image:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.auto-resizable-iframe {
  position: relative;
  overflow: hidden;
  width: 50%;
}

.auto-resizable-iframe::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.auto-resizable-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



#completed {
  text-align: center;
  background-color: #22ff44;
  padding: 10px;
  border-radius: 6px 18px 24px 18px;
  margin-left: 2%;
  min-width: 90px;
}

#progress {
  text-align: center;
  background-color: #ffcc00;
  padding: 10px;
  border-radius: 6px 18px 24px 18px;
  margin-left: 2%;
  min-width: 90px;
}

#abandoned {
  text-align: center;
  background-color: #ff5a5f;
  padding: 10px;
  border-radius: 6px 18px 24px 18px;
  margin-left: 2%;
  min-width: 90px;
}



footer {
  text-align: center;
  h4 {
    font-size: 80%;
  color: #35353b;
  }
}

@media only screen and (max-width: 600px) {
  #name {
    display: none;
  }
  #images{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  h1 {
    font-size: 80px;
  }

  .image{
    transition: transform .2s; /* Animation */
    max-width: 50%;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 4px;
    padding: 0;
    flex: 48%;
  }
  .auto-resizable-iframe {
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .title-project{
    flex-direction: column;
  }
  #page-link {
    text-align: center;    
  }
  h2 {
    font-size: medium;
  }

  #completed {
    padding: 5px;
    font-size: small;
    min-width: 70px;
  }
  
  #progress {
    padding: 5px;
    font-size: small;
    min-width: 70px;
  }
  
  #abandoned {
    padding: 5px;
    font-size: small;
    min-width: 70px;
  }
}