body {
    font-family: 'Arial', 'Arial Bold', Arial, sans-serif;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    
}

h1 {
    font-family: 'Arial', 'Arial Bold', Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    transform: scale(1,.55);
    font-size: 4em;
}

h2 {
    font-family: 'Arial', 'Arial Bold', Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    transform: scale(1,.55);
    font-size: 1em;
}

img {
    width: 45%;
    height: 45%;
}

img#Era{
    width:45%;
    height: 20%;
}
.carousel-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.carousel-container#PsychonautsEra, #PinkEverythingEra{
    flex-direction: row-reverse;
}

.era{
    display: flex;
    width: 50%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.music-links {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjusts space between icons */
    margin: 10px -10px; /* Adds space above and below the link row */
    cursor: pointer;
}

.music-links a img {
    width: 20px; /* Set a small icon size */
    height: 20px;
}

.slider{
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.item{
    position: absolute;
    width: 400px;
    height: auto;
    text-align: center;
    background-color: transparent;
    left: calc(50% - 200px);
    transition: .5s;

}
.item h1 {
    height: 50px;
    white-space: wrap;
    margin-bottom: 10px;
    transform: scale(1,.55);
    align-content: center;
    font-size: 2em;
}
.item p{
    transform: scale(1.1,.75);
    margin-top: -2.5%;
}
#next, #prev{
    position: absolute;
    top: 40%;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: xx-large;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    left: 50px;
}
#next{
    left: unset;
    right: 50px;
}

@media screen and (max-width: 600px){
    .carousel-container{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .carousel-container#PsychonautsEra, #PinkEverythingEra{
        flex-direction: column;
    }

    body{
        overflow-x: hidden;
    }

    .slider{
        margin-bottom: 45px;
    }

    h1{
        font-size: 250%;
    }
    p{
        font-size: 75%;
        text-align: center;
    }
    .slider{
        height: 300px;
        overflow: visible;
    }
    .item{
        width: 300px;
        left: calc(50% - 150px);
    }
    .item h1{
        height: 30px;
    }
    .item p{
        margin-top: -5%;
    }
    #next, #prev{
        font-size: x-large;
    }
    
}