
body {
  color: white;
  font-family: Times New Roman;
  font-size: 20px;
  background-color: black;
  justify-content: center;
}

.flexbox {
  margin: 0 auto;
}

.text {
  position: absolute;
  left: 350px;
  top: 50px;
  font-size: 90px;
  color: #6A162E;
  text-shadow: 
    0 0 3px rgba(255, 0, 0, 0.7), /*red glow */
    0 0 10px rgba(255, 0, 0, 0.5); /* larger glow */  
}

.text2 {
  position: absolute;
  left: 602px;
  top: 150px;
  font-size: 22px;
  color: #7F1B2F;
  text-shadow: 
    0 0 3px rgba(255, 0, 0, 0.7), /*red glow */
    0 0 10px rgba(255, 0, 0, 0.5); /* larger glow */  
}


.box {
  background-color: black; 
}

.box2 {
  background-color: yellow;
}

.imageBox {
  position: relative;
  margin: 0 auto;
}

.imageBox .hoverImg {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  opacity: 0;
  width: 20%;
}

.imageBox:hover .hoverImg {
  display: block;
  opacity: 1;
}

.imageBox:hover .imageInn {
  display: block;
  opacity: 0;
}

.container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.boxLeft {
  width: 905px;
  height: 500px;
}

/****
.boxRight {
  width: 350px;
  height: 600px;
  background-color: pink;
  display: inline-block; ***/

.boxBottom {
  width: 700px;
  height: 200px;
}

.gameBox {
  width: 200px;
  display: inline-block;
  text-align: center;
  padding: 5px;
}

.gameBox img {
  max-width: 80%;
  padding: 5px;
}

.gameTitle {
  display: block;
  width: 200px;
}

.gameDesc {
  margin: 0 auto;
  width: 100px;
}

/*** yoink */

button {
    border: none;
    cursor: pointer;
    color: white;
    background: none;
    transition: all .3s ease-in-out;
}

.container2 {
  width: 200px;
  height: 45px;
  display: flex;
  align-items: center;
  background-color: white;
  margin: 0 auto;
}

.flexCarou {
  display: inline-block;
}


.carousel {
    position: relative;
    width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
}

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

.carousel-item {
    min-width: 28%;
    box-sizing: border-box;
    padding: 4px;
    margin: 0 auto;
}

.item-content {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.item-content img {
    max-width: 800px; 
    max-height: 200px; 
    display: block;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: #333;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-text {
    text-align: center;
    color: black;
}

.item-text h3 {
    margin: 0;
    font-size: 1.5em;
}

.item-text p {
    margin: 5px 0 0;
    font-size: 1em;
}

.carousel-control {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

