@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,700,800,900&display=swap');

.title h1{
    margin: 0;
    padding: 0;
    text-transform: uppercase;

}

h1{
    font-size: 1.8em;
    line-height: 1.2em;
    letter-spacing: 1px;
}

h2{
    font-size: 1.4em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

h3{
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: normal;
}


.title h3{
    margin:0;
    padding: 0;
    text-transform: uppercase;
}



#showcase{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper{
    display: grid;
    grid-template-columns: 60% 30%;
    gap: 25px;
    margin-left: 15%;
    margin-right: 10%;

    margin-top: 48px;
}

.right-side{
    margin-left: 64px;
}

.quick-info{
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    margin-top: 32px;
}

.info h3{
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: normal;
    margin-bottom: 0;
}

.info h2{
    margin-bottom: .5rem;
}

#spotify img{
    width: 30px;
    height: auto;
}

a #spotify{
    color: #1ed760;
}

a:hover #spotify{
    color: #00c545;
}

#soundcloud img{
    width: 30px;
    height: auto;
}

a #soundcloud{
    color: #ff5722;
}

a:hover #soundcloud{
    color: #f00000;
}

#social img{
    width: 30px;
    height: auto;
}

.bio{
    margin-top: 48px;
    text-align: justify;
}

.video{
    margin-top: 48px;
    margin-bottom: 48px;
}

.bio h1{
    margin-bottom: 21px;
}

.video{
    margin-top: 32px;
}

.top{
    margin-bottom: 64px;
}

.middle{
    padding-top: 110px;
}

.side-info h1{
    margin-bottom: 0;
}

.video-container{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-container iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.break {
    word-break: break-all;
}

.outro{
    min-height: 50vh;
    display: grid;
    justify-content: center;
    align-content: center;
}

.social-container{
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-container img{
    width: 90px;
    height: auto;
}

/*  ---  Media Queries  ---  */

/*  ---  Tablet  ---  */
@media(max-width:900px){
    .wrapper{
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-left: 15px;
        margin-right: 15px;
    
        margin-top: 48px;
    }

    .quick-info{
        grid-template-columns: 1fr;
    }

    .right-side{
        margin-left: 15px;
    }

    .top{
        margin-bottom: 0;
    }

    .middle{
        padding-top: 32px;
        margin-bottom: 64px;
    }
}

/*  ---  Smartphone  ---  */
@media(max-width:480px){

}