@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Finger+Paint&family=Pacifico&display=swap');
*{
    margin: 0;
    padding: 0;
    font-size: large;
    font-family: 'Pacifico', cursive;
    box-sizing: border-box;
}
.menu{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-color: black;
}
.menu h1{
    font-size: x-large;
    margin-left: 20px;
    color: white;
    text-transform: uppercase;
}
.menu ul{
    margin-right: 20px;
    z-index: 3;
}
.menu ul li{
    display: inline-block;
    width: 100px;
    text-align: center;
}
.menu ul li a{
    text-decoration: none;
    color: white;
}
.menu ul li a:hover:after{
	width: 100px;
	content: "";
	display: block;
	background-color: white;
	height: 3px;
	position: absolute;
}
#input{
    display: none;
}
#bar{
    display: none;
}
#artist h1{
    font-size: x-large;
    text-align: center;
    padding: 10px;
}
.container{
    width: 100%;
    height: 100%;
    padding: 20px;
}
.arts-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap
}
.artist{
    width: 250px;
    height: 250px;
    background-color: greenyellow;
    margin: 10px;
    position: relative;
    border: 2px solid black;
}
.artist img{
    width: 100%;
}
.info{
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 5px;
    text-align: center;
}

.about{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about h1{
    font-size: x-large;
    padding: 10px;
}
.about h2{
    font-size: large;
    padding: 5px;
}
.social i{
    font-size: x-large;
    padding: 10px;
}
.social i:hover{
    color: rgb(255, 174, 0);
}




@media (max-width:768px){
    #logo img{
        width: 100%;
        transform: scale(1.5);
    }
    #logo h1{
        font-size: large;
    }
}
@media (max-width:480px){
    .menu{
        display: flex;
    }
    .menu ul{
        position: absolute;
        background-color: black;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        height: 100%;
        top: 60px;
        left: -100%;
        transition: all 1s;
    }
    .menu ul li{
        display: block;
        padding: 10px;
    }
    #bar{
        display: block;
    }
    #bar i{
        padding: 10px;
        font-size: x-large;
    }
    #input:checked~ ul{
        left: 0;
    }
    #logo img{
        width: 100%;
        transform: scale(1);
    }
}