/* CSS Document */

body, html {
	min-height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.top-layer {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
	background:
		linear-gradient(40deg, rgba(255,255,255,0) 55%, rgba(126,21,27,1), rgba(181,21,31,1), rgba(222,122,104,1), rgba(237,164,115,1), rgba(248,244,215,1), rgba(181,83,45,1)),
        url("_img/left.jpg");
	top: 0;
	left: 0;
}

.eyes {
	width: 45vw;
}

.eyes img {
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 767px) {
	.eyes {
		width: 80vw;
		height: auto;
    }
}

.fade-text {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 3vw;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  color: black;
  font-size: 2em;x
  font-family: "Times New Roman", "serif";
  font-style: italic;
  text-align: right;
}

.fade-out {
  opacity: 0;
}