    /* Extra small devices (phones, 600px and down) */
    
    @media only screen and (max-width: 600px) {}
    /* Small devices (portrait tablets and large phones, 600px and up) */
    
    @media only screen and (min-width: 600px) {}
    /* Medium devices (landscape tablets, 768px and up) */
    
    @media only screen and (min-width: 768px) {}
    /* Large devices (laptops/desktops, 992px and up) */
    
    @media only screen and (min-width: 992px) {}
    /* Extra large devices (large laptops and desktops, 1200px and up) */
    
    @media only screen and (min-width: 1200px) {}
    
     :root {
        --main-blue-color: #0066ff;
        --main-gray-color: #4d4d4d;
        --main-yellow-color: #ffc005;
        --main-white-color: #fff;
    }
    /*font sytles*/
    
    .serif-headline-italic {
        font-family: 'Times New Roman', Times, serif;
        font-size: 3rem;
        font-style: italic;
        font-weight: 100;
        color: var(--main-gray-color);
        margin-bottom: 1rem;
    }
    
    .serif-subhead {
        font-family: 'Times New Roman', Times, serif;
        font-size: 1.6rem;
        font-weight: 100;
        color: var(--main-gray-color);
        margin-top: 1rem;
    }
    /* paragraph heading styles*/
    
    p {
        font-family: 'Oswald', sans-serif;
        font-size: 1.3rem;
        text-align: justify;
        color: var(--main-gray-color);
    }
    
    body {
        font-family: 'oswald', sans-serif;
        margin: 0;
        min-width: fit-content;
    }
    
    h1 {
        font-family: 'Times New Roman', Times, serif;
        font-size: 3.5rem;
        font-style: italic;
        font-weight: 100;
        color: #4d4d4d;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 2.0rem;
        color: #0066ff;
        font-family: 'Oswald', sans-serif;
        font-weight: normal;
        margin-bottom: 0;
    }
    
    h3 {
        font-size: 1.7rem;
        color: #4d4d4d;
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
    }
    
    h4 {
        font-size: 1.4rem;
        color: #0066ff;
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
    }
    
    li {
        text-align: justify;
        font-size: 1.3rem;
    }
    
    .contain {
        margin: 30px;
    }
    
    @media only screen and (max-width: 600px) {
        .contain {
            margin: none;
        }
    }
    /* Small devices (portrait tablets and large phones, 600px and up) */
    /*link styling*/
    
    a:link {
        text-decoration: none;
        color: #0066ff;
    }
    
    a:visited {
        color: #0066ff;
    }
    
    a:hover {
        color: #4d4d4d;
    }
    
    .center {
        text-align: center;
    }
    /*footer Styling*/
    
    .footer {
        text-align: center;
        background-color: #d4d4d4;
        height: 200px;
        padding-top: 70px;
    }
    
    .footlinks {
        text-decoration: none;
        padding-left: 25px;
        padding-right: 25px;
    }
    /*image styling*/
    
    .respImg {
        width: 100%;
        height: auto;
    }
    
    .centImg {
        display: block;
        margin: auto;
    }
    
    .disclaimer {
        margin: 50px 100px;
    }
    
    @media only screen and (max-width: 992px) {
        .disclaimer {
            margin: 3px 10px;
        }
    }
    
    .click-imgR {
        max-width: 450px;
        float: right;
        margin-left: 8px;
    }
    
    .click-imgL {
        max-width: 450px;
        float: left;
        margin-right: 8px;
    }
    /**************************disclaimers***************************/
    
    .disclaimer {
        margin: 50px 100px;
    }
    
    @media only screen and (max-width: 992px) {
        .disclaimer {
            margin: 3px 10px;
        }
    }
    
    .disFont {
        font-size: 15px;
    }
    
    .tiny {
        font-size: small;
    }