body {
    background-color: black;
    color: silver;
    

}

* {outline: none;}

a {
    text-decoration: none;
}


nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    width: 400px;
    overflow: hidden;
    border: solid silver;

}

.nav_left {
    display: flex;
    flex-direction: column;
    /* border: solid gray; */
    width: 100px;
}

.nav_right {
    /* font-family: 'Fredericka the Great', cursive; */
    font-family: 'Kranky', cursive;
    color: dodgerblue;
    font-size: 100px;
}

button {
    width: 100px;
    background-color: silver;
    border: silver solid;
}



.heart_gif {
    width: 100px;
}

.pics {
    width: 400px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.artwork {
    display: flex;
    flex-direction: column;
    justify-items: center;
}

/* TITLE */
.title_Cont {
    background-image: url('KLF_Grayscale.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 404px;
    border-bottom: #0066ff solid 6px;
    height: 600px;
    width: 400px;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
}

.title {
    display: flex;
    flex-direction: row;
    align-content: center;
    /* width: 100%; */
    /* border: solid green; */
    justify-content: space-between;
    align-items: center;
}


.title_P {
    border: solid green;
    text-align: center;        
    margin: auto;

    color: dodgerblue;


    font-family: 'Kranky', cursive;
    font-size: 50px;
    background-color: rgb(0, 0, 0, 0.8);
    border-radius: 50%;
}

.title_img {
    height: 100px;
    width: auto;
}


/* *****  MEDIA QUERY  ************************************* */

@media only screen and (max-width: 600px) {

    img {
        width: 100%;
    }

    .title_Cont, .title, .artwork, .pics {
        width: 100%;
    }

    .title_Cont {
        background-size: 500px;
    }

    .title_P {
        font-size: 25px;
    }

    nav {
        width: 100%;
    }

}
