*{
    margin: 0;
    padding: 0;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
   background: black;
}
::-webkit-scrollbar-thumb{
    background: rgba(255, 255, 255, 0.46);
    border-radius: 1rem;
}
::-webkit-scrollbar-thumb:hover{
    background: rgba(255, 255, 255, 0.814);
}

.banner{
    width: 100%;
    height: auto;
    background-image: linear-gradient(90deg, rgba(0,0,0), rgb(27, 1, 33));
}


.navbar{
    width: 100%;
    height: 1vh;
    background-color: black;
    margin: auto;
    display: flex;
    padding: 35px 0;
    align-items: center;
    justify-content: space-between;
}
.navbar img{
    width: 15vh;
    cursor: pointer;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}
.navbar i{
    color: white;
}
.navbar i:hover{
    color: rgb(170, 0, 255);
    transition: 0.25s;
}
.content1{
    width: 85%;
    height: 80vh;
    background-color: rgba(96, 3, 125, 0);
    margin: auto;
    height: auto;
}
.newGames{
    color: white;
    padding: 20px;
    text-align: center;
    display: block;
    font-size: 2vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer {
    width: 100%;
    height: auto;
    margin: auto;
    background-color: black;
    text-align: center;
}

.footer img{
    width: 15vh;
    padding-top: 1vh;
}

.footer p{
    color: rgb(170, 0, 255);
    padding-top: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.container{
    padding: 2rem;
}
.slider-wrapper{
    position: relative;
    max-width: 48rem;
    margin: 0;
    height: auto;
}
.slider{
    display: flex;
    aspect-ratio: 16/9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 1rem;
}
.slider img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider a{
    display: flex;
    flex: 1 0 100%;
}
.slider-nav{
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    opacity: 0.75;
    transition: opacity ease 250ms;
}
.slider-nav a:hover{
    opacity: 1;
}
.flexbox1{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
}
.footer i{
    color: white;
    margin-top: 2vh;
}
.footer i:hover{
    color: #e67b00;
    transition: 0.25s;
}
.seriesTitle{
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding: 10px;
}
.series{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: 1vh;
    padding-bottom: 10vh;
}
.series #item{
    background-color: rgba(73, 0, 112, 0.578);
    height: 175px;
    width: 300px;
    border-radius: 0.5rem;
    text-align: center;
}
.series img{
    object-fit: cover;
    flex: 1 0 100%;
    height: 175px;
    width: 300px;
    border-radius: 0.5rem;

}
.games{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: 1vh;
    padding-bottom: 10vh;
}
.games #item{
    background-color: rgba(73, 0, 112, 0.578);
    height: 255px;
    width: 255px;
    border-radius: 0.5rem;
    text-align: center;
}
.games img{
    object-fit: cover;
    flex: 1 0 100%;
    height: 255px;
    width: 255px;
    border-radius: 0.5rem;
}
.footer #tripmine{
    width: 2.5%;
    height: auto;
    padding-left: 10px;

    /* ANIMATIONS */
    background-color: black;
    border: 0;
    cursor: pointer;
    animation-duration: 1.5s;
    animation-name: opacitypulse;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}
@keyframes opacitypulse{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
