* { box-sizing: border-box; }

html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	height: 100%;
	background-color: #9F0000;
	margin: 0;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

h1 {
	font-family: fira-sans, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 8vw;
}

h2 {
	font-family: fira-sans, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 4vw;
}

p {
	font-family: fira-sans, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 3vw;
}

/*----------- HERO ------------*/

.hero-uke {
 	width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero_back.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-uke h1 {
	margin: 0 0 0.1em 0;
	border-bottom: thin;
	border-style: solid;
	border-color: #FFAD04;
}

.hero-text {
	color: #fff;
}

/*----------- COLLAGE ------------*/

.row {
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.column_two {
	flex: 50%;
	-ms-flex: 50%;
	max-width: 50%;
	padding: 0 2px;
}

.column_two img {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px;
}

.column_four {
	flex: 25%;
	-ms-flex: 25%;
	max-width: 25%;
	padding: 0 2px;
}

.column_four img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/*----------- MISSING ------------*/

.missing {
	margin: 30px 0;
	padding: 50px 0;
}

.miss-text {
	color: #000;
}

.miss-text h1 {
	margin: 0 0 0.5em 0;
	font-size: 5vw;
	text-align: center;
}

.miss-text h2 {
	padding: 3px 0;
	margin: 0 0 0.5em 0;
	color: #FFAD04;
	text-align: center;
	font-size: 3vw;
	border-top: thin;
	border-bottom: thin;
	border-style: solid;
	border-color: #FFAD04;
}

.miss-text h3 {
	font-family: balboa-plus-fill, sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	margin: 0.7em 0 0 0;
	font-size: 8vw;
}

.miss-text h4 {
	color: #FFAD04;
	font-family: futura-pt, sans-serif;
	font-weight: 300;
	font-style: normal;
	padding: 3px 0;
	margin: 0 0 1em 0;
	text-align: center;
	font-size: 2vw;
}

.miss-text p {
	font-family: futura-pt, sans-serif; 
	font-size: 2vw;
	font-weight: 500;
	text-align: left;
	line-height: 1.1;
	margin: 0 0.5em;
}

.miss-img img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 5px auto;
}

/*----------- SEARCH ------------*/

.search {
 	width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/galaxy_1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.search h1 {
	width: 100%;
	font-family: futura-pt, sans-serif;
	font-size: 8vw;
	font-weight: 300;
	text-align: center;
	color: #fff;
	margin: 2em auto 2em auto;
	border-bottom: thin;
	border-style: solid;
	border-color: #FFAD04;
}

/*----------- VIDEOS ------------*/

.videos {
 	width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/mask_back.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.stream h1 {
	font-family: futura-pt, sans-serif;
	font-size: 8vw;
	font-weight: 300;
	color: #fff;
	margin: 1.5em 0 0.5em 0;
	border-bottom: thin;
	border-style: solid;
	border-color: #FFAD04;
}


/*----------- FOOTER ------------*/



/*----------- BUTTON ------------*/

#returnBtn {
  	display: none;
 	position: fixed;
  	bottom: 10px;
  	right: 30px;
  	z-index: 99;
  	background: none;
  	border: none;
  	outline: none;
  	cursor: pointer;
}

#returnBtn img{
	height: 120px;
	width: 120px;
}

/*----------- IMAGES ------------*/

object {
	pointer-events: none;
}

/*----------- MEDIA QUERIES ------------*/

@media (max-width: 1024px) {
	
.column_four {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
}
}

@media (max-width: 480px) {
	
.miss-text p { 
	font-size: 4vw;
}

.column_two, .column_four {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}

#returnBtn {
  	right: 10px;
}
	
#returnBtn img{
	height: 50px;
	width: 50px;
}
}