body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: rgb(46, 46, 46);
    color: white;
}

.whole,
.whole>topper,
.whole>topper>.dtl,
.whole>.ctr>.vidbox,
.whole>.ctr>.vidbox>.ovr,
.whole>.ctr>.vidbox>.ovr>.flt,
.whole>.ctr>.best,
.whole>.ctr>.best>div,
.whole>.ctr>.flx,
.whole>.ctr>.flx>.photobox,
footer,
footer>div,
footer>div>.wb {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.whole {
    width: 100%;
    position: relative;

}

.whole>topper {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: rgb(46, 46, 46);
    box-shadow: 0px 15px 10px rgb(46, 46, 46);
    width: calc(100% - 40px);
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
}

.whole>topper>img {
    width: 50px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.whole>topper>.dtl {
    flex-direction: row;
    gap: 8px;
}

.whole>topper>.dtl>a {
    background-color: rgb(65, 65, 65);
    border-radius: 8px;
    padding: 3px 10px 5px 10px;
    font-size: 17px;
    color: inherit;
    text-decoration: none;
}

.whole>topper>.dtl>a>svg {
    width: 20px;
    aspect-ratio: 1/1;

}

.whole>.ctr {
    width: 100%;

}

.whole>.ctr>.vidbox {
    position: relative;
    width: 100%;

}

.whole>.ctr>.vidbox>video {
    width: 100%;
    aspect-ratio: 2/1;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
}

.whole>.ctr>.vidbox>.ovr {
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.whole>.ctr>.vidbox>.ovr>.blkt,
.whole>.ctr>.vidbox>.ovr>.blkb {
    width: 100%;
    height: 70px;
    background: linear-gradient(0deg, rgba(255, 0, 0, 0), rgb(46, 46, 46));
}

.whole>.ctr>.vidbox>.ovr>.blkb {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0), rgb(0, 22, 31));
}

.whole>.ctr>.vidbox>.ovr>.flt {
    width: 100%;
    align-items: center;
    gap: 3px;
    text-shadow: 0px 0px 5px rgb(0, 0, 0);
}

.whole>.ctr>.vidbox>.ovr>.flt>h1 {
    margin: 0;
}

.whole>.ctr>.vidbox>.ovr>.flt>p {
    margin: 0;
    font-size: 13px;
}

.whole>.ctr>.best {
    background-color: rgb(0, 22, 31);
    flex-wrap: wrap;
    flex-direction: row;
    width: calc(100% - 30px);
    padding: 70px 15px;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.whole>.ctr>.best>div {
    flex: 1 1 25%;
    border-radius: 10px;
    max-width: 300px;
    width: 25%;
    padding: 20px;
    aspect-ratio: 2/1;
    background-color: rgba(250, 250, 250, 0.192);
    min-width: 80px;
    justify-content: center;
    text-align: center;
}

.whole>.ctr>.best>div>img {
    width: 50px;
    aspect-ratio: 1/1;
}

.whole>.ctr>.best>div>.lim {

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 7.8em;
    line-height: 1.3em;
}

.whole>.ctr>.flx {
   background-color:  rgb(0, 22, 31);
    justify-content: center;
    width: calc(100% - 40px);
    padding: 20px;
}

.whole>.ctr>.flx>.photobox {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;

}

.whole>.ctr>.flx>.photobox>img {
    flex: 1 1 300px;
    border-radius: 10px;
    width: 200px;
    aspect-ratio: 2/1;
    object-fit: cover;
}


footer{
    background-color:  rgb(0, 22, 31);
    gap:50px;
    width:calc(100% - 80px);
    padding:50px 40px;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}
footer>video{
    object-position: center;
    object-fit: cover;
    width:300px;
    border-radius: 10px;
}
footer>div{
    flex: 1 1 700px;
    flex-direction: column;
    align-items: flex-start;
}

footer>div>.bold{
    font-size: 25px;
}
footer>div>.wb{
    flex-direction: row;
    padding:0px 10px;
    color:white;
    gap:5px;
    background-color: rgb(126, 126, 126);
    width:auto;
}
