@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+HU:wght@100..400&display=swap');
*{
    padding: 0;
    margin: 0;
    border:0px solid black;
    font-family: "Bebas Neue", sans-serif;
    }
html,body{
    width: 100vw;
    height: 100vh;
    background-image:linear-gradient(90deg, white,#8892f07a);
}
#parent{
    width: 100%;
    height: 100%;
    background-color:transparent;
    position: relative;
    overflow-x: hidden;
}
#box{
    position: absolute;
    left: 50%;
    top: 2%;
    transform:translate(-50%,0%);
    width: 60%;
    height: 40%;
    border-radius: 20px;
    background-color: transparent;
    
}
#box img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    border-radius: 20px;
}
h1{
    position: relative;
    left: 50%;
    top:45%;
    transform:translate(-50%,0%);
    background-color: ;
    width: 80%;
    height: 10%;
    text-align: center;
    font-weight: 900;
}
p{
    width: 70%;
    height:10%;
    background-color: ;
    position: relative;
    left: 50%;
    top:50%;
    background-color: ;
    transform:translate(-50%,-50%);
    text-align: center;
    font-family: "Playwrite HU", cursive;
    font-weight: 900;
}
price{
    position: relative;
    top: 60%;
    left: 43%;
    width: max-content;
    height: max-content;
    transform:translate(-50%, -50%);
    font-size:28px;
    background-color:;
    padding: 5px;
    border-radius: 5px;
}
button{
    position: absolute;
    top: 85%;
    left: 50%;
    font-size: 36px;
    width: max-content;
    height: max-content;
    transform:translate(-50%,0%);
    padding:10px 50px;
    background-color: #8892f0;
    text-shadow: 2px 2px black;
    border-radius: 20px;
    font-family: "Archivo Black", sans-serif;
    color: white;
}
@media(width > 600px){
    #box{
    width: 30%;
    height: 60%;
    left: 20%;
    top: 18%;
}
    h1{
        top: 20%;
        width: 50%;
        left: 65%;
        height:max-content;
        
        text-align: left;
        font-size: 56px;
    }
    p{
        top: 30%;
        width: 50%;
        left: 65%;
        height:max-content;
        
        text-align: left;
        font-size: 26px;
    }
    price{
        top:30%;
        font-size: 40px;
        padding: 10px;
        left: 40%;
    }
    button{
        top: 65%;
        left: 50%;
        width: 300px;
    }
}