.game-holder {
    position: relative;
    background: linear-gradient(to left, grey, black);
    width: 38vw;
    height: 60vh;
    top: 15vh;
    align-items: center;
    border-radius: 5px;
    border: 5px solid black;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.game-header {
    background-color: rgb(77, 77, 77);
    color: white;
    position: relative;
    margin: auto;
    text-align: center;
    border-bottom: 5px solid black;
    font-family: sans-serif;
}

.button-holder {
    display: flex;
    position: absolute;
    right: 37%;
    bottom: 0;



}

.next-button {
    position: relative;
    background-color: rgb(219, 219, 219);
    width: 10vw;
    border: 5px solid black;
    bottom: 0;
    height: 5%;
    transition: 0.3s;




}

.next-button:hover {
    background-color: rgb(144, 205, 215);
    font-size: 16px;
}


.game-picture {
    display: block;
    margin-left: 0;
    margin-right: auto;
    width: 99%;
    border: 5px solid black;
    height: 35%;
  

}

.game-description {
    position: relative;
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
    color: white;
    font-weight: bolder;
    text-align: center;
    font-family: sans-serif;
}

.gd-text {
    color: white;
    text-align: center;
    position: relative;
    margin-top: 0;
    font-family: sans-serif;
    font-size: 1.3rem;





}





.arcade-holder {
    position: relative;
    width: 38vw;
    height: 60vh;
    top: 15vh;
    align-items: center;
    background: linear-gradient(to right, grey, black);
    border: 5px solid black;
    border-radius: 5px;
    object-fit: fill;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);



}

.arcade-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 18vw;
    height: 50vh;
    box-shadow: 0px 0px 10px black;
    border: 5px solid black;



}


.carousel-holder {
    display: flex;
    justify-content: space-evenly;
}


@media screen and (max-width: 548px) {

    body {
        background-color: rgb(144, 205, 215);
    }

    .about-me-text {
        font-size: 0.6rem;
    }

    .gd-text {
        font-size: 1rem;

    }

    .arcade-picture {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 95%;
        height: 100%;
        box-shadow: 0px 0px 10px black;
        border: 5px solid black;




    }

    .arcade-holder {
        height: 40vh;
    }

    .game-holder {
        height: 40vh;
    }

    .game-picture {
        width: 95%;
    }


}