@charset "UTF-8";

body {
  background-color: #89726c;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  font-style: normal; 
}


.main-nav {
  grid-area: nav;
}

.main-head {
  grid-area: header;
  text-align: center;
/*  padding: 0.8em; */
  padding-top: 3em;
  padding-bottom: 3em;
}

.content {
  grid-area: content;
  background-color: #443937;
  text-align: center;
}

.main-footer {
  grid-area: footer;
  text-align: center;
  line-height: 4em;
  font-size: 130%;
  font-weight: 400;  
}

.wrapper {
  margin: 5%;
  display: grid;
  grid-template-areas: 
	"nav"
    "header"
    "content"
    "footer";
}

header, footer {
  background-color: #000000;
  color: #89726c;
}

nav, .content, a {
  color: #fffcfd;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  font-size: 130%;
  font-weight: 200;  
  padding-left: 0;
  margin-bottom: -0.2em;
}

.media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
}

.image1 {
  grid-column-start: 1; 
  grid-column-end: 2; 
  grid-row-start: 1; 
  grid-row-end: 2;
  height: 100%;
}

.image2 {
  grid-column-start: 2; 
  grid-column-end: 3; 
  grid-row-start: 1; 
  grid-row-end: 2; 
  height: 100%;
}

.image1 img, .image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video {
  grid-column-start: 1; 
  grid-column-end: 3; 
  grid-row-start: 2; 
  grid-row-end: 3;
  background-color: #000;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 500%;
  font-weight: 300;
  margin-top: -0.35em;
  margin-bottom: -0.45em; 
}

h2 {
  font-size: 200%;
  font-weight: 200;
/*  margin-top: 0.45em; */
  margin-bottom: -0.8em; 
}

h3 {
  font-size: 200%;
  font-weight: 200;
  margin-top: -0.35em;
  margin-bottom: -0.3em;
}

h4 {
  color: #000;
  font-size: 200%;
  font-weight: 275;
 /* transform: scaleY(1.05); */
  line-height: 120%;
  margin-top: 0.4em;
  margin-bottom: 0.4em; 
}

/* h4 second line */
h4 .year-time {
  color: #89726c;
  font-size: 65%;
}

/* popup container */
.popup {
  position: relative;
  display: inline-block;
}

/* Show text when you hover over the .popup container */
.popup:hover .popup-text {
  visibility: visible;
  opacity: 1;
}

/* arrow under popup container */

/*.popup .popup-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
*/

/* popup text */
.popup .popup-text {
  visibility: hidden;
  width: 20rem;
  padding: 20px; 
  background-color: #443937;
  color: #fffcfd;
  font-weight: 200;
  text-align: left;

  /* Position the popup box with bottom & left */
  position: absolute;
  z-index: 1;
  display: block;
  margin: auto;
  left: -100%;
  right: -100%;
  bottom: -5rem;
}

/* Fade in */
/*  opacity: 0;
  transition: opacity 0.3s;
}
*/
	
/* bottom link text*/
.bottom {
  text-align: center;
  color: #443937;
  font-size: 2.5em;
  font-weight: 300;
  line-height: 120%;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
	
	
