/* style.css 
   Style sheet for External Code Application Site for CSDM-N115 Introduction to Web Development - Assignment 3
   Grace Dyck, April 20, 2025, V01027059/X023512
*/

/* CSS Reset Code:
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


#container
{
	width: 800px;
	margin-left:auto;
	margin-right: auto;
	margin-top:30px;
	margin-bottom: 30px;
	font-family: "Dosis", sans-serif;
	
}

#title
{
	background-color: #61603C;
	color:beige;
	padding:20px;
	margin-bottom: 20px;
	font-family: "Special Gothic Expanded One", sans-serif;
  	font-weight: bold;
	font-size: 32px;
}

#content
{
	display: flex;
	align-items: start;
}

#content_left
{
	width: 280px;
	height: 500px;
	background-color: #D2B376;
	margin-right: 20px;       
}

#content_right
{
	width: 500px;
	height: 500px;
	background-color:#B0522A;
}

#content_right h1
{
	font-size:24px;
	font-family: "Dosis", sans-serif;
	font-weight: bold;
	padding: 10px;
	color:#D2B376;
}

#content_right p
{
	font-size: 16px;
	padding: 20px;
	color:beige;
}

#video
{
	height: 300px;
	margin-bottom: 20px;
	position: relative;
}

#menu
{	
	height: 100px;
	background-color:#7A482E;
	margin-top: 20px;
	display: flex;              
	justify-content: center;    
	align-items: center;       
	gap: 40px;
}

#menu a
{
	padding:20px;
	margin-bottom: 20px;
	color:beige;
	font-size:24px;
}

.twitter-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 20px;
}