/* Root */
:root{
    --light-font: 300;
    --regular-font: 400;
    --bold-font: 700;
}

/* All general main */
.main{
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;

    padding: 1.5rem;
    text-wrap: pretty;
}

/* Text styles */
.div__texto {
    width: 20%;
    min-width: 30rem;
    height: auto;
}
.div__h2--texto {
    font-size: 3.3rem;
    font-weight: var(--regular-font);
    margin-bottom: 2rem;
}
.h2__a--texto{
    background: linear-gradient(0deg, rgb(0, 0, 0), rgb(0, 0, 0)) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 100%;
    padding-bottom: 15.5px;
    --bg-h: 3px;
}
.h2__a--texto:where(:hover, :focus-visible){
    background-size: 100% var(--bg-h);
    background-position-x: left;
}
.div__p--texto {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    font-weight: var(--light-font);
    line-height: 2rem;
}
.p__a--texto {
    font-weight: var(--bold-font);

    background: linear-gradient(0deg, rgb(0, 0, 0), rgb(0, 0, 0)) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 100%;
    padding-bottom: 2px;
    --bg-h: 2px;
}   
.p__a--texto:where(:hover, :focus-visible){
    background-size: 100% var(--bg-h);
    background-position-x: left;
}

/* Images styles */
.a__music{
    margin-bottom: 2rem;
    width: 40vw;
    height: 30vh;
    border-radius: 1.5rem;
}

.a__img--music{ 
    width: inherit;
    height: inherit;

    transition: all ease 0.2s;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.55);
    border-radius: 1.5rem;
}

.a__img--music:hover{
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
}

/* Medias */
@media screen and (width <= 425px ) {
    .main {
        margin-top: 2rem;
        height: auto
    }
    .a__music{
        width: 300px;
        height: 18vh;
    }
}

@media screen and (width <= 320px ) {
    .div__h2--texto {
        width: 280px;
        text-align: center;
    }
    .div__p--texto {
        width: 280px;
        text-align: center;
    }
    .a__music{
        width: 280px;
        height: 18vh;
    }
}