body {
  background-image: url(images/concentric_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  margin: 0px;
  flex-direction: column;
  filter: brightness(0.7);
  scroll-behavior: unset;
  overflow: hidden;
}
.center-piece {
  background-color: rgba(0, 0, 0, 0.377);
  border: 4px solid rgba(255, 255, 240, 0.425);
  border-radius: 15px;
  padding: 35px;
  margin: auto;
  transform: scale(1.1);
}
.header {
  display: flex;
  flex-direction: column;
}
#main-title {
  font-family: sans-serif;
  margin-left: auto;
  margin-right: auto;
  color: ivory;
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 0px;
  margin-top: 0px;
}
#subheader {
  font-family: sans-serif;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 17px;
  color: #959595;
  font-size: 20px;
  font-weight: bold;
}
.description-block {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.journey, .info {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.main-image {
  height: 400px;
  width: 440px;
  transition: all 1s linear;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.main-image:active {
  content: url("images/fishhh.jpg");
}
.stream-button {
  background: none;
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  height: 50px;
  width: 800px;
  border-radius: 10px;
  border: 2px solid;
  border-color: red;
  font-family: sans-serif;
  color: red;
  font-size: 25px;
  font-weight: 800;
  transition: all 0.15s linear;
}
.stream-button:hover {
  cursor: pointer;
  background-color: red;
  color: ivory;
}
.stream-button:focus {
  outline: none;
  box-shadow: none;
}
.stream-button:active {
  outline: none;
  box-shadow: none;
  transform: none;
}
#home-button {
  position: absolute;
  top: 30px;
  left: 30px;
  transition: all 0.1s linear;
  height: 50px;
  width: 50px;
  padding: 7px;
  border-radius: 10px;
  background-color: none;
  opacity: 1;
  background-color: red;
}
#home-button:hover {
  transform: scale(1.1);
}
.get-code {
  position: absolute;
  bottom: -40px;
  background: none;
  display: block;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
  border-radius: 10px;
  border: 2px solid;
  border-color: green;
  font-family: sans-serif;
  color: green;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.15s linear;
}
.get-code:hover {
  cursor: pointer;
  background-color: green;
  color: ivory;
}
.get-code:focus {
  outline: none;
  box-shadow: none;
}
.get-code:active {
  outline: none;
  box-shadow: none;
  transform: none;
}
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 10px;
  gap: 10px;
}
* {
  user-select: none;
}
.carousel {
  width: 600px;
  height: 600px;
  margin: auto;
}
.carousel-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 250px;
  left: 0;
  transition: transform 0.5s ease;
}
.carousel-track > * {
  transition: transform 0.3s linear;
}
.carousel-track > * img {
  transition: filter 0.3s linear;
}
.carousel-track > * p {
  position: absolute;
  text-align: center;
  top: 0;
}
.carousel-track img {
  filter: brightness(0.2);
  width: 600px;
  border-radius: 20px;
}
.next {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 25%;
  background-color: rgba(255, 255, 240, 0.226);
  transition: all 0.15s linear;
  transform-origin: center center;
}
.next:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: ivory;
}
.next img {
  display: block;
  max-width: 100%;
  width: auto;
}
.previous {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 25%;
  background-color: rgba(255, 255, 240, 0.226);
  transition: all 0.15s linear;
}
.previous:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: ivory;
}
.previous img {
  display: block;
  max-width: 100%;
  width: auto;
}
.carousel-track .opium-bird {
  transform: scale(1.3);
  img {
    filter: brightness(1);
  }
}
.carousel-track > div {
  position: relative;
}
.male,
.female {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  background-color: darkcyan;
  border-radius: 30px;
  border: 3px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.female {
  background-color: palevioletred;
}
.male img,
.female img {
  width: 80%;
}
#journey-text, #info-text {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    color: rgba(255, 255, 240, 0.836);
    font-family: sans-serif;
    font-size: larger;
    font-weight: 800;
}
#journey-text {
  text-align: right;
}
#info-text {
  text-align: left;
}