body{
    color: #000000;
    font-family: "Roboto Condensed", serif;
}

 

/* ---- Set up site grid ---- */
.wrapper {
    display: grid;
    grid-template-columns: 1fr 495px;
    grid-template-rows: auto;
    grid-template-areas:
        "header header"
        "nav nav"
        "main aside"
        "footer footer";
    grid-gap: 4px;
}

header {
    grid-area: header;
    background-color: #0448F1; /* blue ribbon */
    border-color: #0000FF; /* blue  */
    padding: 0px;

    height: 84px;
}

/* border width for light areas */
nav, main, aside {
    border-style: solid;
    border-width: 1px;
}

nav {
    grid-area: nav;
    background-color: #2F67F3; /* dodger blue */
    border-color: #0000FF; /* blue  */
}

main {
    grid-area: main;
    background-color: #9FB8F6; /* Jordy Blue */
    border-color: #0000FF; /* blue */
}

aside {
    grid-area: aside;
    background-color: #658EF3; /* Cornflower Blue */
    border-color: #0000FF; /* blue */
}

footer {
    grid-area: footer;
    background-color: #0448F1; /* blue ribbon */
    border-color: #0000FF; /* blue  */
}

/* ---- grid for front page images ---- */


.homeimages {
    display: grid;
    grid-template-columns: 250px 250px;
    grid-template-rows: auto;
    grid-template-areas:
        "comedy romance"
        "thriller horror";
    grid-gap: 20px;
    width: 520px;
    margin:auto;
    padding: 5px;
}

.comedy {grid-area: comedy;}
.romance {grid-area: romance;}
.thriller {grid-area: thriller;}
.horror {grid-area: horror;}

/* ---- General formatting ---- */


.box {
    padding: 20px;
    border-radius: 15px;
    color: #000;
}

.box p {
    width: 95%;
}

h1 {
    font-family: "Josefin Sans", serif;
    font-size: 300%;
    padding-left: 150px;
    margin: auto;
    color: white;

    /* -- Transform to vertically center heading */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

}

img.roundleft{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 1px 0px 10px #000;          /* -- Delete and replace for evidence, banner image shadow */
    float: left;
}

.allround{
    border-radius: 20px;
    box-shadow: 1px 0px 10px #000;
}

.centered {
    text-align: center;
}

.contact-button {
    padding: 100px;
}

/* ---- Hover Text ForSmatting ---- */

.hvrbox,
.hvrbox * {
	box-sizing: border-box;
}
.hvrbox {
	position: relative;
	display: inline-block;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
.hvrbox img {
	max-width: 100%;
}
.hvrbox .hvrbox-layer_bottom {
	display: block;
}
.hvrbox .hvrbox-layer_top {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 15px;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
	opacity: 1;
}
.hvrbox .hvrbox-text {
	text-align: center;
	font-size: 18px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.hvrbox .hvrbox-text_mobile {
	font-size: 15px;
	border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
	border-top: 1px solid rgba(179, 179, 179, 0.7);
	margin-top: 5px;
	padding-top: 2px;
	display: none;
}
.hvrbox.active .hvrbox-text_mobile {
	display: block;
}

/* ---- Hidden Box Formatting ----*/
#hidden {
    display: none;
}

.movietype {
    font-size: 150%;
    font-weight: bold;
    padding-right: 15px;
}

.info {
    border-style: solid;
    border-width: 1px;
    background-color: #658EF3; /* Cornflower Blue */
    border-color: #0000ff; /* blue  */
    padding: 10px;
    width: 85%;
}

#showhide {
    background-color: #658EF3; /* Cornflower Blue */
    font-style: italic;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
}

#showhide:hover {
    color: #fff;
    background-color: #2F67F3; /* dodger blue */
}


/* ---- Link Formatting ---- */


/* Links in the main section & Sidebar */
a:link {color: #ffffff;}    /* white */
a:visited {color: #383535;}
a:hover {color: #b7f8c5;}    /* magic mint */

/* Top Navigation */
nav a{text-decoration: none;}
nav a:link, nav a:visited {color: #ffffff;} /* white */
nav a:hover {color: #b7f8c5;}    /* magic mint */



/* Dropdown Content (hidden by Default */

.littlearrow {
    font-size: 75%;
}

/* Style The Dropdown Button */
.dropbtn {
    background-color: #adc4ff; /* Melrose */;
    color: #0448F1;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #658EF3; /* Cornflower Blue */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: rgb(255, 253, 253);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #0448F1} /* blue ribbon */
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  /* .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  } */

  iframe {
    width: 85%;
    height: 754px;
    margin: auto;
    border: 0;
  }