/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  background-image: url('../images/Aqua_Light.png');
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: 100%;
  color: #ffffff;
  font-family: helvetica; /* Apparently Frutiger isn't an option :( */
  font-size: 14px;
  line-height: 1.3em; /* I don't want shit to be as spaced out as before */
  padding: 20px;
}

a:link { 
  color: #00e1ff;
  transition: color 0.5s;
}

a:visited {
  color:#00e1ff;
  transition: color 0.5s;
}

a:hover { /* Links change color slightly when hovered over */
  color: #00ff08;
}

#navigation a:link {
  color: #ffffff;
  transition: color 0.5s;
}

#navigation a:visited {
  color:#ffffff;
  transition: color 0.5s;
}

#navigation a:hover {
  color: #c2ffff;
}

h1 { /* Big headings */
  color: #00e5ff;
  font-size: 2em;
  font-style: bold;
  line-height: 1.15em;
  background: rgba(000,000,000, 0.25);
  border-radius: 20px;
}

h2 { /* Medium headings */
  color: #0091ff;
  font-size: 1.5em;
  font-style: bold;
  line-height: 1.15em;
  background: rgba(000,000,000, 0.25);
  border-radius: 20px;
}

h3 { /* Small headings */
  color: #69faff;
  font-size: 1.25em;
  font-style: bold;
  line-height: 1.15em;
  background: rgba(000,000,000, 0.25);
  border-radius: 20px;
}

img {
  border-radius: 20px;
}

video {
  border-radius: 20px;
}

.note {
  color: rgba(255,255,255, 0.65);
  font-size: 0.95em;
  line-height: 1.15em;
}

.minipostdate {
  font-size: 0.9em;
  font-style: italic;
  font-weight: bold;
}

.miniposttext {
  color: rgba(255,255,255, 0.9);
  font-size: 0.85em;
  font-style: italic;
}

hr {
  border: 1px #ffffff solid;
  margin-left: 10px;
  margin-right: 10px;
}

footer {
  color: #ffffff;
  clear: both;
  float: right;
  text-align: center;
  border: 4px #0018a1 solid;
  box-shadow: 0 2px 5px 1px rgba(0, 24, 161, 0.5);
  border-radius: 20px;
  width: 600px;
  margin-right: 320px;
  margin-bottom: 15px;
  background: linear-gradient(to bottom, #00a4e6, #7e00e6);
}

header {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  clear: both;
  color: rgba(0, 24, 161, 0);
  float: left;
  margin-bottom: 15px;
  margin-left: 190px;
  margin-right: 1px;
  border: 0px #0018a1 solid;
  box-shadow: 0 0px 0px 0px rgba(0, 24, 161, 0.5);
  border-radius: 20px;
  width: 1200px;
  background-image: url('../images/blogLogo.png');
  background-repeat: no-repeat;
  background-position: center;
}

#container {
  float: right;
  font-size: 16px;
  width: 950px;
  text-align: center;
  margin-right: 150px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
  border: 4px #0018a1 solid;
  border-radius: 20px;
  box-shadow: 0 2px 5px 1px rgba(0, 24, 161, 0.5);
  background-color: rgba(0, 24, 161, 0.5);
  backdrop-filter: blur(5px);
}

#navigation {
  float: left;
  width: 100px;
  text-align: center;
  margin-left: 100px;
  padding: 3px;
  border: 4px #006e3d solid;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 5px 1px rgba(0, 110, 61, 0.5);
  background: linear-gradient(to bottom, #5dcf17, #008583);
}

#minibox {
  float: left;
  width: 250px;
  text-align: center;
  margin-left: 30px;
  margin-top: 10px;
  padding: 3px;
  padding-top: 5px;
  border: 4px #0018a1 solid;
  border-radius: 20px;
  box-shadow: 0 2px 5px 1px rgba(0, 24, 161, 0.5);
  background: linear-gradient(to bottom, #00a4e6, #7e00e6);
}