/*@charset "UTF-8";*/
/*id selectors*/
*{box-sizing: border-box;
}
#container {width: 99%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  /*background-color: beige;*/
  padding: 20px;
  border: solid black 5px;
  /*border-radius: 10px;*/
}
#container1 {
  box-sizing: border-box;
  height: 570px;
  width: 97%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;  
  margin-right: 10px; 
  border: solid 2px black;
  padding: 10px;
  background-color: rgba(128, 128, 128, 0.45);
  line-height: 2em;
  font-family: 'Cabin', sans-serif;
  /*color: black;*/
  overflow-y:auto;
}
#container2 {
  box-sizing: border-box;
  height: 570px;
  width: 97%;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 10px;  
  margin-right: 10px; 
  border: solid 2px black;
  padding: 10px;
  background-color: rgba(128, 128, 128, 0.45);
  line-height: 2em;
  font-family: 'Cabin', sans-serif;
  /*color: black;*/
  overflow-y:auto;
}
#container3 {
  box-sizing: border-box;
  height: 570px;
  width: 97%;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 10px; 
  margin-right: 10px; 
  border: solid 2px black;
  padding: 10px;
  background-color: rgba(128, 128, 128, 0.45);
  line-height: 2em;
  font-family: 'Cabin', sans-serif;
  /*color: black;*/
  overflow-y:auto;
}
/*element selectors*/
article {overflow-y:auto;
}
aside {font-family: 'Special Elite', serif;
}
p {font-family: 'Cabin', sans-serif;
}
/*main {width: 1200px;
  color: black;
}*/
html {/*height: 100%;*/
  background-image: url(../images_and_videos/japan_background_copy.JPG);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
}
nav {display: flex;
  flex-direction: column;
  background: rgba(128, 128, 128, 0.72);
  margin-bottom: 10px;
}
ol {font-size: x-large;
  font: bold;
}
header {box-shadow: 5px 5px rgba(0, 0, 0, 0.6);
  border: solid black 1px;
  background-color: rgba(128, 128, 128, 0.45);
  color: black;
  height: 175px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
footer {box-shadow: 5px 5px rgba(0, 0, 0, 0.6);
  border: solid black 1px;
  background-color:rgba(128, 128, 128, 0.45);
  color: black;
  margin-top: 10px;
  /*padding-top: 10px;
  padding-bottom: 10px;*/
  text-align: center;
}
h1 {flex-direction: column;
}
h2 {text-align: center;
  font-family: 'Special Elite', serif;

}
/*descendant selectors*/
nav a {flex: 100%;
  padding: .5rem;
  text-align: center;
  text-decoration: none;
  /*background: rgba(128, 128, 128, 0.72);*/
  color: black;
}
nav a:hover {outline: 1px solid #ea8306;
  color: #ea8306;
  text-decoration: underline;
}
nav ul {list-style-type: none;
  flex-direction: column;
}
nav li:hover .dropdown-1 > li{
  display: block;
  top: 0;
}
ul{font-family: 'Blinker', sans-serif; 
  display: flex;
  flex-direction: row;
  margin:0;
  padding:0;
}
ul li{flex: auto;
  list-style-type:none;
  border:solid black 1px;
}
ul li:nth-child(1){
  border:solid black 1px;
}
ul li a {font-family: 'Blinker', sans-serif;
  display: flex;
  flex: auto;
  text-align:center;
  text-decoration: none;
  justify-content: center;
  font-size: 1.2rem;
  color: black; 
  padding:15px;
}
/*article one*/
.a1 {
  background-color: rgba(128, 128, 128, 0.45);
  /*flex: none;*/
  /*font-weight: lighter;*/
  padding-left: 15px;
  padding-right: 15px;
  border: solid black 2px;
}
/*article two*/
.a2 {
  background-color: rgba(128, 128, 128, 0.45);
  /*flex: 50%;*/
  /*font-weight: lighter;*/
  padding-left: 15px;
  padding-right: 15px;
  border: solid black 2px;
}
/*article three*/
.a3 {
  background-color: rgba(128, 128, 128, 0.45);
  /*flex: 50%;*/
  /*font-weight: lighter;*/
  padding-left: 15px;
  padding-right: 15px;
  border: solid black 2px;
}
.menu-area a{
  display: flex;
  /* The align-items property is used to control the vertical alignment of items within a flex container. It allows you to specify how the flex items should be aligned along the cross-axis.*/
  align-items: center;
  /*The justify-content property defines how the browser distributes space between and around content items along the main axis of a flex container */
  justify-content: center;
  /*color: #fff;
  background: darkslategrey;
  height: 50px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;*/

}
.menu-area a:hover{background-color: rgba(128, 128, 128, 0.72); 
  outline: 1px solid #ea8306;
  color: #ea8306;
  text-decoration: underline;
}
.menu-area ul{
  list-style: none;
  display: flex;
  flex-direction: column;

}
.menu-area ul li{
  position: relative;
  width: 100%;
}
@media (min-width:768px) {
#columnHolder{
display:flex;
flex-direction:row;
}
nav ul {
flex-direction: row;
}
/*.dropdown-1, .dropdown-2 {
  flex-wrap:wrap;
  width:100%;
}*/

/*classes*/
.elite_font {font-family: 'Special Elite', serif;
}
.quick_font {font-family: 'Quicksilver', sans-serif;
}
.baskervville_font {font-family: 'Baskervville', serif;
}
.parent{display:flex;
}

.center_text {text-align: center;
}
.center {margin: auto;
  padding: 10px;
}
.center_text_1 {margin: auto;
  width: 75%;
  padding: 5px;
}
.center_text_2 {margin: auto;
  width: 50%;
  padding: 5px;
}
.center_header_text {text-align: center;
  margin: 50px;
  padding: 10px;
}
.block {display: block;
    
}
.inline_block {display: inline-block;
}
.image_border_1{border: solid black 2px;
border-radius: 5px;    
width: 18%;
}
.aside_right{width: 350px;
  text-align: center;
  float: right;
  margin: -25px 100px 10px 10px
  
}
.float_right {float: right;
}
.float_left {float: left;
}
.logo_float_right {float: right;
  margin: -25px 25px 0 0;
}


.gallery {
  position: relative;
  width: 900px;
  margin: 65px 100px 10px 75px;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  }

.gallery .photo-box {
  position: absolute;
  width: 35%;
  height: 250px;
  z-index: 10;
  transition: all .2s;
  box-shadow: 0 10px 20px rgb(0,0,0);
  outline-offset: 20px;
  outline: 20px solid rgb(128, 128, 128);
  }

.gallery .photo-box:hover {
  z-index: 20;
  outline: 20px solid rgb(205, 204, 204);
  outline-offset: 20px;
  transform: scale(1.05);
  box-shadow: 4px 5px 15px rgb(0,0,0);
  }

.gallery .snake {
  left: 0;
}

.gallery .dog {
  top: 75px;
  left: 20%;
}
}