* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header img{
    width: 100%;
}

h1, h2 {
    font-family: 'Nosifer', cursive;
    text-align: center;
}

h1 {
    font-size: 80px;
    margin: 40px auto;
}

h2 {
    font-size: 45px;
    margin-bottom: 50px;
}

h5 {
    font-size: 18px;
}

p {
    line-height: 1.8;
    font-size: 18px;
    color: rgb(90, 92, 112);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.container-artist {
    justify-content: space-around;
    display: flex;
    place-items: center;
    margin: 60px;
    flex-wrap: wrap;
}

.container-artist img {
    height: 400px;
    position: relative;
    border-radius: 4px;
    box-shadow: 12px 13px 1px 1px #c2f081;
    font-size: 0;
}

.description {
    width: 60%;
}

.container-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.no-overflow {
    margin: 15px;
    overflow: hidden;
}

.img-gallery {
    object-fit: cover;
    display: block;
    border: none;
    cursor: pointer;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    width: 310px;
    height: 300px;
}

.img-gallery:hover {
    -webkit-transform:scale(1.3);
    transform:scale(1.3);
}

.img-light {
    position: fixed;
    background-color: rgba(38, 52, 92, 0.637);
    transition: all .5s;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform .2s ease-in-out;
}

.show {
    transform: translate(0);
}

.add-img {
    object-fit: cover;
    width: 40%;
    min-width: 250px;
    border-radius: 15px;
    transition: transform .3s .2s;
    transform: scale(0);font-family: 'Creepster', cursive;
}

.showImage {
    transform: scale(1);
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    cursor: pointer;
}

.behind {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 20px 50px 15px;
}

#button {
    padding: 5px 30px;
    border: 5px solid;
    border-radius: 12px;
    font-size: 40px;
    font-family: 'Creepster', cursive;
    cursor: pointer;
}

button:hover {
    background-color: rgb(201, 226, 101);
    transition: all .5s;
    transform: scale(1.2);
    border: 5px solid rgb(247, 236, 222);
}

footer {
    background-color: rgb(0, 0, 0);
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 40px 10px 60px;
}

.social-media img {
    height: 60px;
    margin-top: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    color: aliceblue;
}

footer h5 {
    margin: 40px 0;
}

@media screen and (max-width: 1020px) {
    .container-artist img {
        width: 500px;
        height: auto;
        margin-bottom: 50px;
    }

    .description {
        width: 90%;
    }

    .add-img {
        width: 50%;
    }
}

@media screen and (max-width: 728px) {
    h1 {
        font-size: 60px;
    } 

    .container-artist img {
        width: 400px;
        height: auto;
    }

    .container-gallery img {
        width: 210px;
        height: 200px;
    }
}

@media screen and (max-width: 615px) {
    header img {
        width: 100%;
    }

    .container-artist img {
        width: 250px;
    }
}

@media screen and (max-width: 399px) {
    h1, h2 {
        font-size: 30px;
    }

    #button {
        font-size: 22px;
        padding: 4px 60px
    }
    
    .social-media img {
        height: 40px;
    }
}