@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,800");
html, body {
  height: 100%;
  min-height: 18em;
}

.frontend-side {
  background-image: 
    linear-gradient(rgba(218, 33, 37, 0.3), rgba(218, 33, 37, 0.1)),
    url("https://assets.techrepublic.com/uploads/2022/05/top-5-conferences-2022-tom.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.frontend-side button:hover {
  color: violet;
}

.uiux-side {
  background-image: 
    linear-gradient(rgba(34, 42, 117, 0.8), rgba(34, 42, 117, 0.4)),
    url("https://greydynamics.com/wp-content/uploads/2024/04/sigint1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.uiux-side button:hover {
  color: #005de3;
}

.split-pane {
  padding-top: 2em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 50%;
  min-height: 9em;
  font-size: 2em;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  text-align: center;
  position: relative; /* Ensure proper layering */
}
@media (min-width: 500px) {
  .split-pane {
    padding-top: 2em;
    height: 100%;
  }
}
.split-pane div {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  z-index: 2; /* Ensure content is above the tint */
}

.split-pane div button {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 0.5em;
  padding: 0.8em;
  font-weight: bold;
  transition: all 0.2s ease-out;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 500px) {
  .split-pane div button {
    font-size: 0.4em;
  }
}
.split-pane div button:hover {
  background: #fff;
  text-decoration: none;
}

.special-button {
  background-color: rgba(34, 42, 117, 0.449);
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1.3em;
  padding: 0.8em;
  font-weight: bold;
  transition: all 0.2s ease-out;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 500px) {
  .special-button {
    font-size: 0.4em;
  }
}
.special-button:hover {
  background: #fff;
  text-decoration: none;
  color: black;
}

.text-content {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.split-pane div .text-content {
  line-height: 1.6em;
  margin-bottom: 2em;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.split-pane div .text-content .bold {
  font-size: 0.6em;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .split-pane div .text-content .bold {
    font-size: 0.4em;
  }
}
.split-pane div .text-content .big {
  font-size: 2em;
  font-weight: 800;
}
@media (max-width: 500px) {
  .split-pane div .text-content .big {
    font-size: 1.5em;
  }
}

.split-pane-line {
  color: white;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  text-align: center;
  z-index: 3; /* Ensure it's above the tint */
  left: 50%;
  transform: translate(-50%, -50%);
}
.split-pane-line img {
  height: 6em;
}
@media (max-width: 500px) {
  .split-pane-line img {
    height: 3em;
  }
}

@media (min-width: 500px) {
  .col-sm-6 {
    width: 50%;
  }
}

.credits footer {
  position: absolute;
  bottom: 0;
  right: 5px;
  text-align: right;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
}
.credits footer p {
  border: none;
  padding: 0;
}
.credits footer p strong {
  font-size: 2em;
  text-decoration: none;
}
.credits footer p strong:hover {
  color: #ff0909;
  transition: all 0.4s ease-in-out;
  font-weight: 1500;
  font-size: 4em;
}
.credits footer a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.9s ease-in-out;
}
.credits footer a:hover {
  color: #ff2222;
  font-weight: 900;
  font-size: 1.5em;
}

.top-banner {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5em;
  font-weight: 800;
  font-style: italic;
  position: relative;
  z-index: 4;
}

.content-wrapper {
  height: calc(100% - 4.5em);
  position: relative;
}