<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section {
    color: rgb(54, 37, 5);
    margin: 15px 15px;
    margin-top: 110px;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-template-rows: auto 150px auto;
    grid-gap: 50px;
    grid-template-areas:
    "title title"
    "image name"
    "image desc";
    font-family: 'Yanone Kaffeesatz';
    background: rgba(212, 161, 65, 0.479);
    padding: 20px;
}

.detail-name {
    grid-area: name;
    font-size: 38px;
}
.detail-name input[type=button] {
    width: 200px;
    height: 50px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    font-size: 24px;
    font-family:'Yanone Kaffeesatz';
    border: none;
    background-color: rgb(177, 124, 26);
    color: white;
    transition: background-color 0.5s;
    cursor: pointer;
}

.detail-name input[type=button]:hover {
    background-color: rgba(248, 206, 128, 0.287);
}

.detail-name input[type=number] {
    width: 55px;
    height: 50px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    font-size: 18px;
    border: none;
    padding-left: 20px;
    font-family:'Comfortaa';
}

.detail-buy {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    font-size: 36px;
}
.title {
    display: flex;
    justify-content: flex-start;
    grid-area: title;
    font-family: 'Amatic SC', cursive;
    font-size: 50px;
    width: 100%;
}

.title .back-button{
    width: 10%;
    font-size: 70px;
}

.title .back-button:hover{
    width: 10%;
    font-size: 70px;
    color: rgba(54, 37, 5, 0.664);
}

.title .actual-title {
    width: 90%;
    display: flex;
    justify-content: center;
    text-align: center;
}

a {
    color: inherit;
}


.detail-price {
    grid-area: price;
}

.detail-desc {
    grid-area: desc;
    font-size: 25px;
    margin-top: 10px;
}

.detail-image {
    grid-area: image;
    display: flex;
    justify-content: center;
}

.detail-image img{
    width: 100%;
    height: auto;
}

#hide {
    display: none;
}
@media screen and (max-width:1048px){
    section {
        color: rgb(54, 37, 5);
        margin: 15px 15px;
        margin-top: 110px;
        display: grid;
        grid-template-columns: 1fr 1fr ;
        grid-template-rows: auto 150px auto;
        grid-gap: 50px;
        grid-template-areas:
        "title title"
        "image image"
        "image image"
        "name name"
        "desc desc";
        font-family: 'Yanone Kaffeesatz';
        background: rgba(212, 161, 65, 0.479);
        
    }

    .title {
        flex-direction: column;
        justify-content: center;
    }

    .title .actual-title {
        width: 100%;
    }
    
}</pre></body></html>