<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

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

body{
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}
.container{
    zoom: 90%;
    /* background-color: aquamarine; */
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    transform-style: preserve-3d;
    box-sizing: border-box;
    height: 600px;
    border-radius: 30px;
    padding: 10px 50px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-shadow: 0 20px 20px rgba(0,0,0,0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
    /* background-color: blueviolet; */
}

.jacket{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rosybrown; */
}
.jacket img{
    width: 200px;
    z-index: 2;
    transition: all 0.75s ease-out;
    /* animation: change 10s infinite ease-in-out; */
}
.circle{
    width: 140px;
    height: 140px;
    background: linear-gradient(
        to right,
        rgba(255, 4, 0, 0.75),
        rgba(255, 251, 0, 0.75)
    );
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}
.info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.75s ease-out;
}
.info h1{
    /* padding-top: 10px; */
    font-size: 20px;
    transition: all 0.75s ease-out;
}
.info h3{
    font-size: 13px;
    color: #585858;
    font-weight: lighter;
    transition: all 0.75s ease-out;

}
.sizes{
    padding: 20px 0;
    display: flex;
    flex-wrap:wrap;
    gap: 5px;
    justify-content: space-between;
    transition: all 0.75s ease-out;
}
.sizes button{
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 10px;
    background: none;
    border: none;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    font-weight: bold;
    cursor: pointer;
    box-sizing: border-box;
    color: #585858;
}
.sizes button:hover{
    background: #585858;
    color: white;
}
button.active{
    background: #585858;
    color: white;
}
.purchase{
    /* padding: 10% 0; */
}
.purchase button{
    width: 100%;
    padding: 10px 5px;
    font-size: 15px;
    border: none;
    background: rgba(255, 4, 0, 0.75);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);

    transition: all 0.75s ease-out;
}
/* @keyframes change {
    0%{background-image: url(images/bj.png);}
    20%{background-image: url(images/coblos.png);}
    40%{background-image: url(images/kartuluch.png);}
    60%{background-image: url(images/mbak.png);}
    80%{background-image: url(images/bj.png);}
    100%{background-image: url(images/coblos.png);}
} */

@media screen and (max-width:1080px){
    .container{
        width: 90%;
    }
    .card{
        max-width: 70%;
    }
}
@media screen and (max-width:500px){
    .container{
        width: 100%;
        height: 800px;
    }
    .card{
        max-width: 90%;
        overflow-y: auto;
    }
}</pre></body></html>