@charset "utf-8";

/*
   Final Project
   CIS 1406
   
   Author:   Alyssa Milinkovich
   Date:       12/5/2023
   
   Filename: am_layout.css

   This file contains the layout styles and media
   queries used with sample pages from the Movie websites.

*/

 /* Main Styles */
 
html {
	background-color: rgb(199, 174, 173);
	font-size: 12px;
	font-family: Tahoma, Geneva, sans-serif;
}

body {
	background-color: rgb(222, 183, 182);
	box-shadow: 15px 0px 30px rgb(51, 51, 51),
				-15px 0px 30px rgb(51, 51, 51);	
	margin: 0px auto;				   
	max-width: 1024px;
}
	
body > header {
	background: url("corina-rainer-P2wLo_PzHjU-unsplash.jpg") center / cover no-repeat;
	text-align: center;	
	width: 100%;
}

body > header > img {
	display: inline;
	width: 100%;
	max-width: 480px;
	text-align: center;
	filter: opacity(0.75);
}

article > ul > li {
	display: block;
	width: 25%;
	border: 4px double rgb(45, 93, 62);
	border-radius: 35px;
	box-shadow: rgb(91, 34, 32) 0px 0px 20px 10px;
	background: radial-gradient(white, rgb(222, 183, 182), rgb(202, 150, 149));
}

body > div > section > article {
	background-color: rgb(222, 183, 182);
	width: 100%;
	float: right;
}



/* Horizontal Navigation Styles */

nav.horizontal {
	display: table;
	height: auto;
	width: 100%;
}

nav.horizontal ul {
	display: table-row;
	background-color: rgb(154, 128, 127);
	text-align: center;	
}


nav.horizontal li {
	display: table-cell;
	font-family: 'Comic Sans MS', cursive; 
	font-size: 1.4em;
	line-height: 2em;
	list-style-type: none;	
}

nav.horizontal li a {
	color: black;
	display: block;
	width: 100%;
}

nav.horizontal li a:hover, nav.horizontal li a:active {
	color: white;
	background-color: rgb(51, 51, 51);
}

/* Image and Video Styles */

body > section > img.real {
     box-shadow: 3px 3px 10px rgb(151, 151, 151);
     display: block;
     float: right;
     margin: 0px 20px 20px 20px;
     width: 35%;
	 filter: grayscale(1);
}

article img.self {
     box-shadow: 3px 3px 10px rgb(151, 151, 151);
     display: block;
     float: right;
     margin: 0px 10px 10px 10px;
     width: 35%;
	 height: 225px;
	 filter: sepia(0.5);
}

figure img {
	display: block;
	float: right;
	width: 35%;
	box-shadow: 15px 0px 30px black;
}

article img {
	display: block;
	float: right;
	width: 35%;
	box-shadow: 15px 0px 30px black;
}



/* List Styles */

dl {
	margin-left: 2%;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
dt {
	display: block;
	margin: 0;
	text-indent: 0;
	font-weight: bold;
	border-bottom: 1px solid rgb(170, 105, 103);
}
dd {
	display: block;
	margin: 0 0 3% 3%;
	text-indent: 0;
}

body > article > header {
	text-align: center;
	
}
