.bio-section {
    background-color: rgb(224, 224, 224) !important;
    color: black !important;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 25px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.bio-section img {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    max-width: 400px;
}

.bio-section p {
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.games-section {
    margin-top: 15px;
    margin-bottom: 30px;
}

.game-box-group {
    width: 100%;
    display: flex;
    justify-content: space-between; /*FOR WHEN THERE ARE THREE GAMES*/
    /* justify-content: space-evenly; */
    column-gap: 15px;
}

.game-box {
    position: relative;
    max-width: 250px;
    border-radius: var(--main-rounding);
    overflow: hidden;
}

.game-box img {
    width: 100%;
    height: 100%;
}

/* Mobile */
@media only screen and (max-width: 585px) {
    .game-box {
      column-gap: 5px;
  }
}

/* Carousel */
.carouselSlide {
    display: none;
    border-radius: var(--main-rounding);
}

.carouselSlide img {
    vertical-align: middle;
    border-radius: var(--main-rounding);
}

/* carousel container */
.carousel-container {
    overflow: hidden;
    z-index: 0;
    max-width: 1000px;
    position: relative;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 200ms ease-in-out;
    user-select: none;
    height: 100%;
    align-items: center;
}

.prev img, .next img {
    height: 100%;
}

.prev {
    top: 0;
    border-radius: 10px 0 0 10px;
}

/* Position the "next button" to the right */
.next {
    top: 0;
    right: 0;
    border-radius: 0 10px 10px 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    /* border: 2px solid transparent;  */
    background-clip: padding-box;
    border-radius: 50%;
    margin: 0 2px;
    display: inline-block;
    transition: 200ms ease-in-out;
    vertical-align: middle;
    pointer-events: all;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.active {
    background-color: white;
}

.dot-group-background {
  /* background-color: hsl(222, 14%, 28%); */
  /* box-shadow: 0 5px 25px rgba(0,0,0,0.2); */
  pointer-events: all;
  display: inline-block;
  padding: 5px;
  border-radius: 15px;
  line-height: 0;
}

.dot-group {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 0.5s;
    animation-name: fade;
    animation-duration: 0.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px;
    }
}
