@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;@400;@500;@600&display=swap');
@font-face {
    font-family: "Minecraft";
    src: url("/fonts/minecraft/1_MinecraftRegular1.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url("/img/Cakey_banner.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}


/*---------> scrollbar <---------*/


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/*---------> Actual Style <---------*/

p {
    color: white;
    font-family: 'Minecraft', Arial, sans-serif;
    font-size: 25px;
}

.title{
    margin: auto;
    width: 50%;
    text-align: center;
    padding-top: 65px;
    padding-bottom: 65px;
}

.title h1{
    font-family: 'Minecraft', Arial, sans-serif;
    font-size: 6vmax;
}

.art-cont {
    margin: auto;
    width: 50%;
    text-align: center;
    justify-content: center;
    padding: 20px;
}

.art-piece {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 25px;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
    background: black;
}

.art-piece .img p img{
    width: 32vw;
}

/*---------> Mobile <---------*/

@media(max-width:1366px){
    .art-piece .img p img{
        width: 45vw;
    }
    p {
        font-size: 30px;
    }
}

@media(max-width:800px){
    .art-cont {
        width: auto;
     }
    .art-piece .img p img{
        width: 50vw;
    }
    p {
        font-size: 4.5vw;
    }
}