@font-face {
    font-family: 'heavy';
    src: url('../sfheavy.woff2');
}

@font-face {
    font-family: 'reg';
    src: url('../sfregular.woff2');
}

:root {
    --i: calc(1vw + 1vh);
}

body {
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
    padding: 0 24px;
}

.back {
    background: #d84712;
    border: none;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: reg;
    margin: 0 20px;
}

.towrap {
    display: flex;
}

img {
    width: 100vw;
    max-width: 400px;
    border-radius: 20px;
    object-fit: contain;
}

h1 {
    font-family: heavy;
    margin: 0 30px 0 20px;
}

.dsc {
    font-family: reg;
    font-size: 20px;
    margin: 10px 30px 0 20px;
}

h3 {
    font-family: heavy;
    margin: 10px 30px 0 20px;
    font-size: 25px;
}

.price {
    font-family: reg;
    margin: 0 30px 50px 20px;
    color: #d84712;
}

@media screen and (max-width: 768px) {
    img {
        margin: 0;
        max-width: none;
        max-height: 400px;
        object-fit: cover;
        margin-left: -24px;
        margin-bottom: 18px;
    }

    .towrap {
        flex-direction: column;
    }
}