body{
    background: linear-gradient(to right, black, rgb(27, 27, 27));
    font-family: 'Oswald', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}
.proximos{
    color: whitesmoke;
    font-size: clamp(1.5rem, 2vw, 7rem);
    margin: 150px 0 0 30px;
}
.proximos h1, .proximos p{
    margin-bottom: 5px;
}
.proximos p{
    color: #808080;
}
.boton-inicio{
    display: flex;
    margin-top: 20px
}
.proximos button{
    height: 45px;
    width: 200px;
    font-size: clamp(1.2rem, 1vw, 7rem);
    font-family: 'Oswald', sans-serif;
    margin-right: 1.5%;
    border-radius: 7px;
    color: whitesmoke;
    letter-spacing: 2px;
    cursor: pointer;
}
.proximos a{
    margin-right: 1.5%;
}
.buy{
    background-color: #f03131;
    border: none;
}
.ver{
    background-color: transparent;
    border: solid 1px whitesmoke;
}
.buy:hover{
    background-color: mediumorchid;
    transition: 0.5s;
}
.ver:hover{
    background-color: rgba(153, 19, 231, 0.26);
}
@media screen and (max-width: 442px) {
    .proximos{
        margin: 100px 0 0 5px;
    }
    .proximos button{
        width: 100%;
        margin-bottom: 4%;
        font-size: clamp(.8rem, .8vw, 7rem);

    }
    
}


/* DIVISION */
.proximos-conciertos{
    flex: 3 1 200px;
    color: whitesmoke;
    margin: 13vw 50px 50px 50px;
    letter-spacing: 2px;
    font-size: clamp(1.1rem, 1vw, 7rem);
    max-height: 60vw;
    width: 60%;
    overflow-y: auto;
    overflow-x: hidden;
}
.contenedor{
    display: flex;
    flex-wrap: wrap;
}
.proximos-conciertos .item{
    border: solid 1px whitesmoke;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.proximos-conciertos .info{
    display: flex;
    flex-direction: column;
}
.proximos-conciertos p{
    display: inline;
    font-size: clamp(0.9rem, 1vw, 6rem);
    color: gray;
    font-weight: bold;
}
.proximos-conciertos h4{
    margin: 0 0 10px;
}
.proximos-conciertos button{
    background-color: #f03131;
    border: none;
    height: clamp(2rem, 3vw, 4rem);
    width: clamp(100px, 15%, 300px);
    font-size: clamp(1.2rem, 1vw, 2.5rem);
    font-family: 'Oswald', sans-serif;
    margin-right: 1.5%;
    border-radius: 7px;
    color: whitesmoke;
    letter-spacing: 2px;
    cursor: pointer;

}
.proximos-conciertos button:hover{
    background-color: mediumorchid;
    transition: 0.5s;
}
.btn{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .proximos-conciertos{
    margin: 13vw 0 0 0;
    width: 100vw;
  }
}
