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

.list-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px;
  padding: 0px;
}

.list-container li {
  margin-top: 5px;
  margin-bottom: 5px;
}

.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: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 55px;
    margin: 0;
    padding: 0;
}

ul 
{
    list-style-type: circle;
}

.indent
{
    margin-left: 60px;
}

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

.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:33%;
  transition: transform .2s;
}

.image:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
#status {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#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;
}

#youtube {
    width: 400px;
    height: 500px;
}

span {
  display: none;
}

.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%;
}


#projects-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.projects {
  display: flex;
  width: 200px;
  justify-content: center;
  background-color: #40476d;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 3px;
  border-radius: 6px 4px 15px 4px;
}

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: 35px;
  }
  .image{
    transition: transform .2s; /* Animation */
    max-width: 50%;
    flex: 50%;
    margin: 0;
    padding: 0;
  }
  .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;
  }
}





