html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

body{
  margin: 0;
  padding: 0;	
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.sources{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background-color: rgba(78, 103, 119,1);
}

#sources-header{
  display: flex;
  height: 100px;
  width: 100%;
  color: white;
  padding: 0px 5%;
  box-sizing: border-box;
  font-size: 72px;
  font-weight: 100;
  line-height: 100px;
}

#sources-body{
  display: flex;
  width: 100%;
  justify-content: center;
}

#sources-body-cards-wrapper{
  display: flex;
  flex-direction: column;
  width: 1000px;
  box-sizing: border-box;
  align-items: center;
}

.sources-cards{
  display: flex;
  width: 100%;
  flex-direction: row;
  background-color: rgba(60, 79, 91, 1);
  box-sizing: border-box;
  padding: 10px;
  margin: 10px;
  border-radius: 3px;
  color: white;
  justify-content: flex-start;
}

.sources-image-container{
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 100%;
  max-height: 150px;
  margin-right: 10px;
}

.sources-description-container{
  display: flex;
  flex-direction: column;
  width: calc(100% - 400px);
  height: auto;
  margin-right: 10px;
}

.sources-description-container span{
  display: flex;
  width: 100%;
  flex-direction: row;
  font-weight: 200;
  font-size: 16px;
}

.sources-description-container p{
  font-weight: 200;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  margin-top: 10px;
}

.sources-description-container p a{
  text-decoration: none;
  color: white;
  font-weight: 300;
}

.sources-image-container img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}


#sources-footer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: rgba(200, 200, 200, 1);
  font-weight: 200;
}




@media only screen and (max-width: 1000px){

  #sources-header{
    padding: 0px 10px;
    font-size: 48px;
  }

  #sources-body-cards-wrapper{
    width: 100%;
  }

  .sources-cards{
    width: auto;
    flex-direction: column;
    max-width: 400px;
    min-width: 0;
    min-height: 150px;
  }

  .sources-image-container{
    width: 100%;
    height: auto;
    margin-right: 0px;
  }

  .sources-image-container img{
    height: 100%;
  }

  .sources-description-container{
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-right: 0px;
  }
}
