
body{
  font-family: 'Roboto Serif', serif;
  margin: auto;
  padding: 1% 1%;
   /*background-image: url(cityscapebackground1.jpg);*/
   background-repeat: no-repeat;
 background-attachment: fixed;
  background-color: #d1eabc;
  /*width: 100%;*/
}

 
  @media screen and (min-width: 601px) {.topnav {
    background-image: linear-gradient(blue, #22325e);
   display: flex;
   flex-wrap: wrap; 
   border: 1px solid gold;
   align-items: center;
   justify-content: space-between;
   overflow: hidden;
     padding: 2px 20px 2px 20px;
 }
 }
 


  .topnav a {
    float: left;
    color: white;
    text-align: center;
    background-image: linear-gradient(#fdc959, #b08104); 
     padding: 10px 10px 10px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 17px;
    transition: color 1s;
  }
  
 
  .topnav  a:hover, .dropdown:hover .dropbtn{
    background-color: rgb(247, 246, 237);
   color: black; 
  }


  .topnav a.active {
    background-color: gold;
    color: white;
  }
    

  .topnav .icon {
    display: none;
  }





/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Style the dropdown button to fit inside the topnav */
  .dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* Style the dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }


  
  /* Style the links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: blue;
    padding: 12px 16px;
    text-decoration: none;
    background: rgb(251, 252, 252);
    display: block;
    text-align: left;
    border-bottom: 1px dotted gray;

  }
  
  /* Add a dark background on topnav links and the dropdown button on hover 
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
  }*/
  
  /* Add a grey background to dropdown links on hover 
  .dropdown-content a:hover {
    background-color: #ddd;
    color: black;
  }*/
  
  /* Show the dropdown menu when the user moves the mouse over the dropdown button */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  

  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }


  
  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
     .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    } 

  }


  .hero{
    height: 40vh; 
    margin: auto;
    width: 100%;
    background-image: url(migration-3129299_1920.jpg);
    background-position: center;
   border: 3px solid gold;
   animation: slide 25s infinite;
 
 }
 

 @keyframes slide {
   25%{
       background: url(migration-3129299_1920.jpg);
   }
   50%{
       background: url(altered.png);
   }
   75%{
       background: url(hungrychildren.png);
   }
   100%{
       background: url(tophungerpic.jpg);
   }   
}


.intro{

  text-align: center;
  color: gold;
  font-size: 2em;
  text-shadow: 1px 1px 1px #000000;


}

hr.new1{
  width: 100%;
  border: 2px solid gold;
}




.section1{
  margin: 70px 10px 15px;
font-size: 2em;
text-align: center;
color: gold;
background-color: white;
text-shadow: 2px 2px 2px gray;
}


main{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
/*     align-items: center; */
  justify-content: space-between;
  padding: 2px 20px 2px 20px;

}


.first{
  box-shadow: 5px 5px 11px gray;
  padding: 5px 5px 5px; 
}

.article1 {
flex: 1 1 30%;
margin: 2px;
padding: 20px 10px 20px;
background-color: white; 
color: black;
text-align: justify;
}



.article2 {
  flex: 1 1 32%;
  margin: 2px;
  padding: 10px 10px 10px 10px;
 
  color: black;
  text-align: justify;
  }
  


  .article3 {
    flex: 1 1 30%;
    margin: 2px;
    padding: 10px 10px 10px 10px;
		background-color: white;
    color: black;
    text-align: justify;
    }
    



article:nth-child(2) {
  padding: 10px 10px 10px 10px; 
}
 
 .article2:hover .box {
  transform: translateX(5%);
}
 
 
.article2:hover .box1 {
  transform: translateX(40%);
}
 

 .box{
  transition: 2s ease-in;
} 

 
.box1{
  transition: 2s ease-in;
}


h1{
  text-align: center;
    color: #22325e;
    border-bottom: 3px solid gold;
    transition: all 1s ease-in;



}


h1:hover{
  color: gold;
  background-color: #22325e;
}

ul li{
  margin: 8px;
  transition: 1s;

}

ul li:hover{
  text-shadow: 1px 1px 1px white;
  background-image: linear-gradient(#fdc959, #b08104);
}


 li::marker{
  color: blue;

}
 
.box {  
  width: 330px;
  height: 224px;
  overflow: hidden;
  border: 2px solid blue;
  transform: translateX(30%)
}

 
 
.box1 {
  width: 330px;
  height: 224px;
  overflow: hidden;
  border: 2px solid blue;
  transform: translateX(1%)
}
 

.valuebox {
  float: left;
  width: 300px;
  height: 200px;
  margin: 10px 10px 25px 10px;
  background-image: url(onthestage.png);
  border: 2px solid blue;
  box-shadow: 5px 5px 11px gray;
  animation:  value 25s infinite;

}



@keyframes value {
  30%{
      background: url(aptcomplex2.png);
  }
 
  65%{
      background: url(keyboardish.png);
  }  
  
  90%{
    background: url(onthestage.png);
} 
}


.img1{
  width: 200px;
  margin-top: 5px;
  border-radius: 5%;

  cursor: pointer;
}






.img2{
  display: block;
  margin: auto;
  width: 70%;
  margin-top: 5px;
  border-radius: 5%;
  border: 2px solid blue;
  box-shadow: 8px 8px 11px gray;


  cursor: pointer;
}


.nowrap{
  white-space: nowrap;
}




.img3{
  width: 20px;

}


.img4{
  border: 2px solid blue;
  width: 95%;

}



.img5{
  width: 65px;

}



.img6{
  width: 150px;

}


.culture{
  font-size: 1.25rem;
  padding: 5px 5px 5px;
  box-shadow: 5px 5px 11px gray;
 

}




.section2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 2px 10px;
 padding: 10px 2px 10px; 

}

.first-page1 {
  flex: 1 1 48%;
  margin: auto;
  margin: 10px 6px 20px;
  /*padding: 10px 10px 10px 10px; */

}




.first-page2 {
  flex: 1 1 47%;
margin-bottom: 20px;
  padding: 10px 10px 20px 10px;
  font-size: 1.5em;
  text-align: justify;
  background-color: white;
  box-shadow: 5px 5px 11px gray;
  border-radius: 8px;
  /* border-style: solid;
  border-color:  green; */
}



.bottom-page1 {  
  margin: auto;
  width: 80%;
  /*border-style: solid;
  border-color:  blue;*/ 
   overflow: hidden;
   transform: translateY(1%)
 }
 
  
  
 .bottom-page2 {
  margin: auto;
   width: 80%;
  /*border-style: solid;
  border-color:  blue;*/ 
   overflow: hidden;
   transform: translateY(2%)
 }
  
 




.section2:hover .bottom-page1 {
  transform: translateY(99%);
}
 
 
.section2:hover .bottom-page2 {
  transform: translateY(-99%);
}
 

 .bottom-page1{
  transition: 3s ease-in;
} 

 
.bottom-page2{
  transition: 3s ease-in;
}







.footer {
  width: 100%;
  font-size: .75rem;
  padding: 10px 10px 10px 10px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-shadow: 1px 1px 1px white;
margin-top: auto;
  background-image: linear-gradient(#fdc959, #b08104);

}

.footer1 {
	flex: 1 1 32%;
  margin: 5px 5px 5px 5px;


}


.footer2 {
	flex: 1 1 32%;



}


.footer3 {
	flex: 1 1 32%;



}







