body {
    margin: 0;
    background-color: rgb(255, 201, 120);
}
.content-definer {
    width: 700px;
}
header {
    width: 100%;
    &>div.content-definer {
        margin: 0 auto;
        padding-right: 10px;
        display: flex;
        justify-content: space-between;
        &>h2 {
            margin: 0;
            padding: 10px;
            &>a {
                text-decoration: none;
                color: black;
            }
        }
        &>a {
            text-decoration: none;
            color: black;
            padding-top: 15px;
        }
    }
    background-color: rgb(255, 155, 0);
}
div.section {
    background-color: rgb(255, 187, 84);
    border: 1px solid rgba(174, 124, 55, 0.574);
    width: calc(100% - 20px);
    min-height: 180px;
    padding: 10px;
    display: flex;
    img {
        margin-right: 20px;
        height: 180px;
    }
    button {
        width: 100px;
        height: 40px;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.122);
        background-color: rgba(255, 255, 255, 0);
        transition: 0.2s;
        &:hover {
            background-color: white;
            border-width: 0;
        }
    }
}
main {
    margin: 0 auto;
    padding: 0 50px;
    background-color: rgb(255, 179, 65);
    min-height: auto;
    border: solid rgb(242, 164, 56);
    border-width: 0 1px 0 1px;
    min-height: calc(100vh - 50px);
    padding-top: 20px;
    padding-bottom: 30px;
    &>div#contents {
        padding: 10px;
        &>h1 {
            margin: 0 0 20px 0;
        }
    }
}
#daliy-special {
    background-color: rgb(255, 187, 84);
    border: 1px solid rgba(174, 124, 55, 0.574);
    width: calc(100% - 20px);
    height: 180px;
    padding: 10px;
    display: flex;
    &>div#pic-with-frame {
        position: relative;
        width: 180px;
        height: 180px;
        margin-right: 40px;
        &>img#picture {
            position: absolute;
            top: 0;
            left: 0;
            width: 180px;
            aspect-ratio: 1;
            z-index: 1;
        }
        &>img#frame {
            position: absolute;
            left: -60px;
            top: -45px;
            width: 300px;
            aspect-ratio: 1.1;
            z-index: 2;
        }
    }   
    &>div#daliy-listing-details {
        padding-left: 20px;
        &>h3, p#price {
            margin: 0;
        }
        &>p#description {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.145);
        }
    }
}
#location-details {
    background-color: rgb(255, 187, 84);
    border: 1px solid rgba(174, 124, 55, 0.574);
    width: calc(100% - 20px);
    height: 180px;
    padding: 10px;
    display: flex;
    margin-top: 20px;
    img {
        margin-right: 20px;
    }
    button {
        width: 100px;
        height: 40px;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.122);
        background-color: rgba(255, 255, 255, 0);
        transition: 0.2s;
        &:hover {
            background-color: white;
            border-width: 0;
        }
    }
}
.break {
    margin-top: 20px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.041);
}
#check-menu {
    background-color: rgb(255, 187, 84);
    border: 1px solid rgba(174, 124, 55, 0.574);
    width: calc(100% - 20px);
    height: 180px;
    margin-top: 20px;
    padding: 10px;
    display: flex;
    &>div>a>button {
        width: 100px;
        height: 40px;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.122);
        background-color: rgba(255, 255, 255, 0);
        transition: 0.2s;
        &:hover {
            background-color: white;
            border-width: 0;
        }
    }
    &>img {
        margin-left: -10px;
        margin-top: -30px;
    }
}
div.PostBox {
    background-color: rgb(255, 187, 84);
    border: 1px solid rgba(174, 124, 55, 0.574);
    width: calc(100% - 20px);
    height: 180px;
    margin-top: 20px;
    padding: 10px;
    display: flex;
    img {
        width: 175px;
        aspect-ratio: 1;
    }
    div {
        padding-left: 20px;
    }
}
#opiniones {
    color: rgba(0, 0, 0, 0.279);
    text-decoration: none;
    font-size: 14px;
}