::-webkit-scrollbar {
    display: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body{
    font-family: Montserrat;
    display: grid;
    justify-items:center;
    background-color: white;
    min-height: 100vh;
    
}

.highlight-section{
    margin: 10px 0 10px 0;
}

.main-heading{
    color:#950000;
    color: #950000;
    font-size: clamp(1.875rem, 1.771rem + 0.556vw, 2.188rem); /*30-35*/
}

.highlight-heading {
    color: #950000;
    font-size: clamp(1.25rem, 1.168rem + 0.439vw, 1.563rem);
    font-weight: 400;
    margin: 30px 0 30px 0;
}

.highlight-para{
    padding-top: 10px;
    font-size: clamp(0.875rem, 0.792rem + 0.444vw, 1.125rem); /*14px - 18px*/
    font-weight: 400;
}

.highlight-ul {
    list-style-type: disc;
    margin: 15px 0 15px 30px;
  }

.highlight-li {
    margin-bottom: 5px;
  }

.highlight-image-wrapper{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.highlight-image{
    width: 40%;
    height: auto;
    object-fit: cover;
}

a.content{
    color: black;
    text-decoration: none;
}
a.content:hover{
    color: #950000;
    text-decoration: underline;
}

/* responsive codes */

/* mobile */
@media only screen and (max-width: 760px) {
    .highlight-image{
        width: 90%;
    }
    
}
