/* === Base Styles === */
body {
	background-color: #000000;
	background-image: url(https://i.pinimg.com/736x/7a/ae/02/7aae0261ffbe2d23c79964da07587a48.jpg);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: 'Courier New', monospace;
}

a:link, a:visited {
	text-decoration: none;
	color: #C6C6C6;
}
a:hover, a:active {
	color: #FFFFFF;
}
abbr {
	border-bottom: 0px dotted;
	cursor: help;
	font-weight: bold;
}

/* === Main Container === */
.container {
	width: 638px;
	margin: 0 auto;
	text-align: left;
	background: url(https://i.pinimg.com/originals/99/38/c3/9938c3bf928d771ccc2dd2eafc1403f1.gif) no-repeat center top;
	background-size: cover;
	z-index: 0;
	padding-bottom: 60px;
}

/* === Hero Section === */
.hero {
	position: relative;
	padding: 40px 20px;
}

/* === About Me Section === */
.about-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	gap: 20px;
}

.profile-pic {
	width: 160px;
	height: auto;
	border-radius: 50%;
	border: 2px solid #444;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-text {
	max-width: 420px;
	color: #afafaf;
	line-height: 1.6;
}

/* === Titles === */
h1, h2, .intro-text h3 {
	display: none;
}
h3 {
	margin: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

/* === Extras === */
.extra1 {
	position: absolute;
	width: 50%;
	height: 301px;
	bottom: 15px;
	left: 0;
	background: url(https://i.pinimg.com/736x/44/1c/89/441c895167638de1609c4a460f1474ce.jpg) no-repeat right bottom;
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
	margin-left: -317px;
	z-index: 1;
}

.extra2 {
	position: absolute;
	width: 638px;
	height: 18px;
	top: 0px;
	left: 50%;
	margin-left: -319px;
	background: url(https://i.pinimg.com/originals/22/93/ed/2293ed602af37203c07a2739d353d5ed.gif) no-repeat center center;
	background-size: 100% auto;
	z-index: 0;
}

/* === Content Section === */
.main-content p {
	text-indent: 24px;
}
.main-content a:link, .main-content a:visited {
	color: #FF2A2A;
}
.main-content a:hover, .main-content a:active {
	color: #FF5A5A;
}
.content-section {
	margin-left: 15px;
	width: 600px;
	font-size: 12px;
	color: #AFAFAF;
	font-style: italic;
	background: url(title_explanation.gif) no-repeat;
}
.content-section h3 {
	height: 22px;
}
.content-section p {
	margin-left: 12px;
	width: 580px;
	margin-bottom: 12px;
}

/* === Footer === */
footer {
	margin-left: 15px;
	width: 600px;
	height: 15px;
	font-size: 12px;
	text-align: center;
	word-spacing: 20px;
	background: #320000;
	padding-top: 2px;
	border-bottom: 1px solid #A12727;
	border-top: 1px solid #730000;
}

/* === Dropdown Menu Styles === */
.dropdown {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
}

.dropbtn {
  background-color: #111;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  border-radius: 4px;
  box-shadow: 0 0 5px #444;
}

.dropbtn:hover {
  background-color: #333;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #1e1e1e;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown-content a {
  color: #C6C6C6;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-family: 'Courier New', monospace;
}

.dropdown-content a:hover {
  background-color: #333;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

