    body {
        background: #00a3d0;
        animation: color-me-in 5s;
        margin: 0px;
    }
    
    @keyframes color-me-in {
        0% {
            background: rgb(255, 255, 255);
        }
        100% {
            background: #00a3d0;
        }
    }
    
    #img {
        display: block;
        width: 100%;
    }
    
    h2 {
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    }
    
    p {
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        text-align: justify;
        text-justify: inter-word;
    }
    
    .quotation {
        font-size: 15px;
        /* margin: 0 auto; */
        quotes: "\201C""\201D""\2018""\2019";
        padding: 10px 20px;
        line-height: 1.4;
    }
    
    .quotation:before {
        content: open-quote;
        display: inline;
        height: 0;
        line-height: 0;
        left: -10px;
        position: relative;
        top: 15px;
        color: #ccc;
        font-size: 3em;
    }
    
    .quotation::after {
        content: close-quote;
        display: inline;
        height: 0;
        line-height: 0;
        left: 10px;
        position: relative;
        top: 15px;
        color: #ccc;
        font-size: 3em;
    }
    
    .topNav {
        display: flex;
        justify-content: space-evenly;
        background-color: rgba(255, 255, 255, 0);
        top: 0;
        width: 100%;
        backdrop-filter: blur(2px);
    }
    /* Style the links inside the navigation bar */
    
    .navBtn {
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        float: left;
        color: rgb(255, 255, 255);
        background-color: rgba(199, 199, 199, 0.404);
        text-align: center;
        padding: 30px 16px;
        text-decoration: none;
        font-size: 20px;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        margin-bottom: 0px;
        /* margin-left: 1px;
    margin-right: 1px; */
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
        -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
        outline: none !important;
    }
    
    .navBtn:hover {
        background-color: rgba(180, 244, 255, 0.87);
        color: rgb(53, 53, 53);
        border-color: #d0eaff;
        box-shadow: 0px 5px 0px #008cff;
    }
    
    .navBtn.active {
        background-color: rgb(122, 213, 255);
        color: white;
        border-top: 1px;
        border-color: #9ecaed;
        box-shadow: 0px 3px 0px #008cff;
    }
    
    footer {
        text-align: center;
        padding: 3px;
        background-color: rgb(255, 255, 255);
        color: white;
        height: 50px;
    }
    
    footer p {
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        text-align: justify;
        text-justify: inter-word;
    }