@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #1c1c1c;
}

body {
    max-width: 1200px;
    width: 100%;
    padding: 10px 25px;
    margin: 0 auto;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: rgb(223, 223, 223);
}

header {
    width: 100%;
    display: flex;
    border-bottom: 2px solid rgb(88, 88, 88);
    justify-content: center;

}

header img {
    height: 100%;
    max-width: 800px;
    width: 100%;
    object-fit: contain;

}

nav{
display: flex;
    min-height: 50px;
    border-bottom: 2px solid rgb(88, 88, 88);
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}



ul{
    list-style-type: none;
}

li {
    float: left;
    padding: 10px;
    padding-left: 0;
    padding-right: 25px;
}

a {
    color: rgb(228 255 0);
    color: rgb(229 193 158);
    text-decoration: none;
    transition: 0.4s;
}

a:hover{
    color: #9090fd;
    color: #b6978d !important;
}

h2{
    margin: 25px 0;
    margin-bottom: 10px;
    margin-top: 40px;
    font-weight: 100;
    font-family: 'Libre Baskerville', serif;
}

.container{
    width: 100%;
    padding:25px 0;
    border-bottom: 2px solid rgb(88, 88, 88);
}

a{
    display: inline-block;
}

.grid a{
    color: white;
}

.grid .album-cover p{
    margin-left: 0;
}

.album{
display: grid;
    grid-template-columns: 1fr auto;
    max-width: 520px;
    gap: 10px;
    margin-top: 20px;

}

.homepage-album{
    max-width: 425px;
}

.album-cover img{
    width: 100%;
    height: 100%;
    outline: 2px solid rgb(88, 88, 88);
}


.homepage-album .album-cover{
    width: 260px;
}

.album-info{
    padding: 0 5px;
    line-height: 1.6;
    text-transform: uppercase;

}


.album-cover{
    width: 200px;
    text-align: center;
}

.album-cover P{
    margin: 5px;
    font-size: 15px;
    font-weight: bold;
}

.year{
    font-weight: 400 !important;
}

.borderless{
    border: 0;
}

.about-photos{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.about-photos img{
    width: 100%;
    padding: 30px;
}

.currentpage{
    color: #9090fd;
    color: #b6978d;
}

.lyricsandpersonnel{
    margin-bottom: 50px;
}

.homepage-album .music-links{
   font-size: 24px;
   margin-top: -15px;
    gap: 0;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    line-height: 2.4;

}

.music-links{
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 47px;
    padding: 0;
    
}

.music .music-links{
    margin-top: 15px;
}


#bio{
    margin: 0;
    font-weight: 400;
}

h2{
    text-transform: uppercase;
}


footer p{
    font-size: 14px;
    text-align: center;
}

.about p{
    margin-top: 15px;
  margin-bottom: 20px;  
}

.social a{
    padding: 5px;
}

.more-btn{
    text-align: end;
    font-size: 15px;
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    margin-bottom: 20px;
}

.grid .album-cover{
    text-align: left;
    width: 95%;
}

.grid .album{
    justify-items: center;
    grid-template-columns: 1fr;
}

.new-album-cover{
    width: 100% !important;
}

.new-album-cover a{
    color: white;
}

.new-album{
    display: block;
        
        /* grid-template-columns: 1fr auto; */
        max-width: 490px;
        /* gap: 10px; */
        margin-top: 20px;
        margin: 0 auto;
}



.new{
    font-size: 15px;
        /* margin-top: -15px; */
        gap: 0;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: row;
        line-height: 2.4;
        justify-content: space-between;
}

@media only screen and (max-width: 600px) {
    .album{
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }


    .album-cover{
        margin:  0 auto;
        max-width: 200px;
        width: 100%;
    }

    .grid .album-cover, .homepage-album .album-cover{
        max-width: 100%;
    }

    

    .music-links{
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .album-info{
        text-align: center;
    }

        .lyricsandpersonnel {
            margin-bottom: 50px;
            text-align: center;
            overflow-x: hidden;
            padding: 10px;
        }

        .about-photos{
            grid-template-columns: 100%;
        }

        .about-photos img{
            padding: 10px;
        }

        nav{
            flex-direction: column;
        }

        nav li{
            padding: 10px;
        }

        body{
            font-size: 3.5vw;
        }

        .new{
            flex-direction: column;
        }

        .grid{
            grid-template-columns: 1fr 1fr;
        }

        
}

@media only screen and (max-width: 400px) {
   
    body {
        font-size: 5vw;
    }

    .grid{
        display: block;
    }


}
