
* {
  box-sizing: border-box;
}

:root {
  --primary-darker: #03061e;   /* Darker Blue */
  --primary-dark: #070c3c;   /* Dark Blue */
  --primary-color: #0a125a;   /* Main Blue */
  --primary-light: #5c6191;  /* Light Blue */
  --primary-lighter: #adb0c8;/* Lighter Blue */
  --secondary-color: #f5eda5; /* Opposite Yellow */
  --text-color: #333;         /* Dark Gray */
  --background-color: #f4f4f4; /* Light Gray */
}

@font-face {
  font-family: 'BankGothic';
  font-size: large;
  src: url('./BankGothicBT-Light.woff2') format('woff2'),
      url('./BankGothicBT-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Style the body */
body {
  font-family: sans-serif;
  margin: 0;
  padding-bottom: 0px;
  background-color: var(--primary-darker);
  color: #ffffff;
}

p {
  font-size: 1rem;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

/* Header/logo Title */
.header {
  text-align: center;
  color: white;
}

/* Increase the font size of headings */
h1, h2, h3, h4, h5, h6, .articleTitle, .articleDate, .webringText, .webringEmphasis, .webringLink, .navbar-bad, .linktree-txt {
  font-family: "BankGothic";
}
/* Unused */
h1 {
  font-size: 40px;
}
/* Titles */
h2 {
  font-size: 35px;
}
/* Unused */
h3 {
  font-size: 35px;
}
/* Unused */
h4 {
  font-size: 30px;
}
/* Smaller Titles */
h5 {
  font-size: 25px;
}
/* Unused */
h6 {
  font-size: 20px;
}

.articleTitle {
  font-weight: bold;
  font-size: 35px;
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
  margin-top: 1rem;
}

.articleTitle:hover {
  color: #ffff;
  text-decoration: underline;
  text-decoration-color: #ffff;
}

.articleDate {
  font-size: 25px;
  margin-top: 0.5rem;
}

.webringText {
  font-size: 20px;
  color: #fff;
  margin: 0.5rem;
}

.webringEmphasis {
  font-size: 25px;
  color: #fff;
  margin: 0.5rem;
}

.webringLink {
  font-size: 20px;
  margin: 0.5rem;
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
}

.webringLink:hover {
  color: #fff;
}

.albumTitle {
  font-weight: bold;
  font-size: 35px;
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
  margin-top: 1rem;
}





#centralEl {
  display: flex;
  justify-content: center;
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar-bad {
  z-index: 1;
  overflow: hidden;
  background-color: var(--primary-color);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

/* Style the navigation bar links */
.navbar-bad a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  text-decoration: none;
}


/* Right-aligned link */
.navbar-bad a.right {
  float: right;
}

/* Change color on hover */
.navbar-bad a:hover {
  background-color: var(--primary-light);
  color: black;
}

/* Active/current link */
.navbar-bad a.active {
  background-color: var(--primary-lighter);
  color: white;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: nowrap; /* IE10 */
  flex-wrap: nowrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 5%; /* IE10 */
  flex: 5%;
  background-color: var(--primary-darker);
  padding: 15px;
}

/* Main column */
.main {   
  -ms-flex: 80%; /* IE10 */
  flex: 80%;
  background-color: var(--primary-dark);
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #ffffff;
  width: 100%;
  padding: 20px;
}
/* Fake image, just for this example */
.linesep {
  background-color: #ffffff;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
}

.linktree-container {
  flex-direction: column;
  max-width: 60%;
  min-width: 310px;
  margin: auto;
  margin-top: 3em;
}

.linktree-btn {
  z-index: 0;
  width:90%;
  margin-left: auto;
  margin-right: auto;
  display:block;
  max-height:none;
}

/* Change color on hover */
.linktree-btn:hover {
  color: blue;
}

.linktree-div {
  max-width: 200px;
}

.linktree-txt {
  font-size:25px; 
  font-weight:bold;
}

/* Footer */
.footer-bad {
  background: var(--primary-darker);
  height: 250px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: stretch;
}



.footer-webring-flex {
  border-style: inset;
  border-color: white;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-wrap:wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  background-color: var(--primary-dark);
  margin: 0.5rem;
}

.footer-webring-div {
  border-style: inset;
  border-color: white;
  background-color: var(--primary-dark);
  padding: 0.5rem;
}

.footer-webring-img {
  border-style: inset;
  border-color: white;
  background-color: var(--primary-dark);
}

.footer-blog-flex {
  border-style: inset;
  border-color: white;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  margin: 0.5rem;
  flex-grow: 1;
  justify-content: space-evenly;
}

.profileImg {
  width: 200px;
}

.contentImgHolder {
  max-width: 90%;
  margin: auto;
  background-color: var(--primary-darker);
}
.contentImg {
  max-height: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.carousel-overboard {
  display: flex;
  flex-direction: row;
}

.carousel-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  position: relative;
  background-color: var(--primary-darker);
}

.carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-prev, .carousel-next {
  font-size: xx-large;
  color: var(--secondary-color);
  cursor: pointer;
  margin-top: auto;
  margin-bottom: auto;
}

.carousel-next {
  font-size: xx-large;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  margin-bottom: auto;
}

.carousel img {
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 600px;
}

.carousel-info {
  display: flex;
  margin-left: 5%;
  font-size: 11px;
  margin-top: 0.5rem;
}

.carousel-info-text {
    margin-left: 1rem;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row { 
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar-bad a {
    float: none;
    width: 100%;
  }
}