@charset "utf-8";

@font-face {
  font-family: Nanum;
  src: url("NanumMyeongjo-Bold.ttf");
}

html {
  background-color: black;
  background-image: url(BackgroundImg.jpg);
  background-size: cover;
}

body {
  background-color: rgb(0, 0, 0);
}


main {
  color: white;
  font-size: 1.3em;
}

main > section {
  font-size: 0.8em;
}

footer {
  font-size: 1em;
  text-align: center;
  padding: 50px;
  order: 1000;
}

h1 {
  color: white;
  text-align: center;
  font-size: 5em;
}

h2 {
  color: white;
  text-align: center;
  font-size: 3em;
}

h3 {
  color: white;
  text-align: left;
  font-size: 2em;
  margin-left: 10px;
}

p {
  color: lightgray;
}

section {
  float: left;
  width: 250px;
  padding: 50px;
}

blockquote {
  float: left;
  color: white;
  display: block;
  background: linear-gradient(180deg, rgb(57, 58, 67), black);
  box-shadow: rgb(85, 148, 185) 10px 0 15px
}

blockquote > p {
  font-size: 0.8em;
}

cite > img {
  height: 60px;
  width: 60px;
  float: left;
  padding: 0px 20px 25px;
  transform: rotate(-15deg);
}

cite > p {
  color: white;
  font-size: 0.8em;
}

/* Nav Bar Styles */

a:visited,
a:link {
  color: rgb(0, 204, 255);
}

a:active,
a:hover {
  color: rgb(189, 119, 255);
}

/* Transition Nav Bar */
nav ul li a {
  font-size: 1em;
  transition: font-size 0.2s ease-in-out;
}

nav ul li a:hover {
  font-size: 1.5em;
}

/* Full Gallary Image CSS */
main > img {
  padding: 10px 10px 10px 10px;
  height: 400px;
  width: 230px;
}

.photoscape {
  height: 400px;
  width: 295px;
}

.landscape {
  height: 330px;
  width: 450px;
}

/* Table Styles */
table {
  background: black;
  border: 5px solid lightgray;
  margin: 0 auto;
}

th,
td {
  border: 3px solid lightgray;
  line-height: 1.4em;
  padding: 8px;
}

th {
  background-color: black;
  color: rgb(130, 210, 255);
  font-weight: normal;
}

td {
  color: lightgray;
  font-size: 0.9em;
  vertical-align: top;
}


/* Column Styles */
col#firstCol {
  width: 24%;
}

col.dataCols {
  width: 19%;
}


/* Table Header Styles */
thead>tr {
  height: 60px;
}

thead>tr:first-of-type {
  font-size: 1.5em;
}

/* Dropdown CSS */

/* The dropdown container */
.dropdown {
  float: bottom;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropdown {
  font-size: 1em;
  text-decoration: underline;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: rgb(0, 204, 255);
  background-color: black;
  font-family: Nanum, sans-serif;
  /* Important for vertical align on mobile phones */
  margin: 0;
  /* Important for vertical align on mobile phones */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  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 {
  float: none;
  color: rgb(0, 204, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #6b6b6b;
}

.dropdown:hover {
  background-color: rgb(189, 119, 255);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Media CSS */

iframe {
  margin: auto;
}

audio {
  float: left;
  color: white;
}

/* Form CSS */

form {
  display: block;
  margin: auto;
}

label {
  display: block;
  float: left;
  clear: left;
  font-size: 1.3em;
  color: white;
  margin-bottom: 10px;
  margin-right: 10px;
  text-align: right;
}

input[type='radio'] {
  width: auto;
  float: none;
  clear: none;
  margin-right: 15px;
}

input[type='checkbox'] {
  width: auto;
  float: none;
  clear: none;
  margin-right: 15px;
}




button {
  background: transparent;
  border: none;
  display: block;
  margin: 5px auto;
}

input[type="submit"] {
  font-size: 1em;
  background: black;
  border: solid rgb(0, 204, 255);
  height: 40px;
  width: 80px;
  color: rgb(0, 204, 255);
}

div {
  color: aliceblue;
  text-align: left;
}

/* Image Zoom */
main > img:active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2); 
}