body{
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    --sb-track-color: transparent;
    --sb-thumb-color: #d9d9d9;
    --sb-size: 9px;
}
  
.container-pdp main::-webkit-scrollbar {
    width: var(--sb-size)
}

.container-pdp main::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 5px;
}

.container-pdp main::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 5px;
}

@supports not selector(::-webkit-scrollbar) {
    .container-pdp main {
        scrollbar-color: var(--sb-thumb-color)
                        var(--sb-track-color);
    }
}

h1{
    margin: 0;
    font-size: 18px;
    text-align: center;
    border-bottom: 0.5px solid #999898;
    padding: 15px;
}
h2{
    font-size: 11px;
    margin-left: 10px;
}
ol{
    font-size: 11px;
    padding-left: 25px;
}
.container-img{
    width: 100%;
    height: 163px;
}
.container-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container{
    background-color: #F5F0F0;
    height: calc(100vh - 181px);
    display: flex;
    justify-content: center;
}
.container-pdp{
    background-color: #FFFFFF;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 70px;
    border-radius: 10px;
}
.container-pdp main{
    padding: 10px 20px;
    height: 280px;
    overflow: auto;
    text-align: left;
    font-size: 14px;
}
footer{
    height: 18px;
    width: 100%;
    background: linear-gradient(to right,#294884, #59A4B4);
}

@media screen and (min-width: 320px) and (max-width: 490px) and (min-height: 640px){
    .container-pdp main{
        height: 360px;
    }
}

@media screen and (min-width: 320px) and (max-width: 490px) and (min-height: 805px){
    .container-pdp main{
        height: 490px;
    }
}

@media screen and (min-width: 320px) and (max-width: 490px) and (min-height: 926px){
    .container-pdp main{
        height: 620px;
    }
}

@media screen and (min-width: 768px){
    .container-pdp main{
        height: 750px;
        font-size: 15px;
        padding: 15px 40px;
    }

    h2, ol{
        font-size: 13px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (min-height: 1112px){
    .container-pdp main{
        height: 820px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (min-height: 1280px){
    .container-pdp main{
        height: 1000px;
    }
}


@media screen and (min-width: 1024px){
    h1{
        font-size: 24px;
    }
    h2{
        font-size: 14px;
    }
    .container-pdp main{
        font-size: 14px;
        height: 1019px;
    }
    ol{
        font-size: 14px;
    }
}

@media screen and (min-width: 1280px){
    .container-img{
        height: 223px;
    }

    .container-pdp{
        width: 70%;
        border-radius: 15px;
        top: 100px;
    }

    .container{
        height: calc(100vh - 241px);
    }

    .container-pdp main{
        height: 435px;
    }
}

@media screen and (min-width: 1440px) and (min-height: 900px){
    .container-pdp main{
        height: 520px;
    }
}

@media screen and (min-width: 1920px){
    h1{
        font-size: 32px;
        padding: 20px;
    }

    .container-pdp main{
        font-size: 18px;
        height: 650px;
    }

    h2,ol{
        font-size: 16px;
    }
}