html {
    font-size: 19.2px;
    overflow: unset;
}

html body {
    all: initial;
}

html body .total-contain {
    all: initial;
}

.model {
    width: 100%;
}

.model .model-content {
    width: 80%;
    margin: 3rem auto;
    background-image: linear-gradient(to right, #fef2ec, #feeef1, #e7f6f6, #eef8f2);
    border-radius: 1rem;
    box-shadow: 2px 2px 10px #53DCBA;
    padding: 2rem;
    padding-bottom: 3rem;
}

.model .model-content .overview {
    opacity: 0;
    width: 100%;
    transition: all .35s ease-in;
}

.model .model-content .overview .longanPicture {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.model .model-content .overview .longanPicture img {
    width: 10vw;
    height: 10vw;
    animation: jumpLongan 3s ease-in-out infinite;
}

.model .model-content .overview .longanPicture .shadow {
    background-color: #53DCBA;
    border-radius: 50%;
    width: 7vw;
    height: 2vw;
    animation: shadow 3s ease-in-out infinite;
}

.model .model-content .overview .model-title {
    font-size: 5vw;
    font-family: hawk;
    color: #53DCBA;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
}

.model .model-content .overview .model-article {
    display: block;
    width: 100%;
}

.model .model-content .overview .model-article p {
    font-size: 1.5vw;
    margin: 1rem 0;
    font-family: NavTitle;
    line-height: 3vw;
    text-align: justify;
    text-justify: newspaper;
}

.model .model-content .overview .model-article table {
    position: relative;
    margin-top: 0rem;
    margin: 0 auto;
    border-collapse: collapse;
    font-family: NavTitle;
}

.model .model-content .overview .model-article table caption {
    font-size: 1.6vw;
    margin-bottom: 1rem;
    font-weight: bolder;
    text-align: left;
}

.model .model-content .overview .model-article table th {
    font-size: 1.5vw;
    text-align: center;
    padding: 0.7rem 0;
    background-color: #28ae78;
    box-shadow: 0px 0px 1px #131313 inset !important;
}

.model .model-content .overview .model-article table td {
    font-size: 1.5vw;
    font-weight: 900;
    background-color: #fcfbf3;
    text-align: center;
    padding: 0.6rem;
    box-shadow: 0px 0px 1px #131313 inset !important;
}

.model .model-content .overview .model-article table td img {
    display: block;
    width: 100%;
}

@keyframes jumpLongan {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-80px);
    }
}

@keyframes shadow {

    0%,
    100% {
        transform: scale(1);
        filter: blur(1px);
    }

    50% {
        transform: scale(0.5);
        filter: blur(2px);
    }
}