body {
    font-family:"Cascadia Code","Consolas","Lucida Console","Menlo", "Monaco", "Courier New", "Courier", monospace;
    font-size: large;
    margin: 0;
    padding: 0;
    background-color: #e6f3fa;

    /*    background-color: rgb(15, 15, 65); */


/*    
    This is a comment in css
*/    
}

header {

/*    background-image: url('fp_header.png'); */
/*    background-color: rgb(25, 25, 97); */
/*    background-color: #002FA7; */

/*    background-image: url('btc logo 01.png'); */

    position: relative;

    background-color: #b3d0f5; /*#FFF0F0 */

    font-family: "Cascadia Code","Consolas","Lucida Console","Menlo", "Monaco", "Courier New", "Courier", monospace;
    color:  #002fa7;
    padding: 1em 0;
    text-align: center;

}

.logo {

    position: absolute;
    left: 180px;
    top: 50%;
    transform: translateY(-50%);
    height: 230px; /* Adjust to your preferred size */
    width: auto;


}

header h1 {
        margin: 0;
        color:#002FA7;
        font-size: 4rem;
/*        font-family: 'Poiret One', 'Futura', 'Century Gothic', sans-serif; */
/*        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

header h2 {
        margin: 0;
        color:#002FA7;
        font-size: 3rem;
/*        font-family: 'Poiret One', 'Futura', 'Century Gothic', sans-serif;  */
}


header h3 {
        margin: 0;
        font-size: 2rem;
        color:#002FA7;
/*        font-family: 'Poiret One', 'Futura', 'Century Gothic', sans-serif; */
}



h1 {
    margin: 0;
    color: yellow;
}

h2 {
    margin: 0;
    color:whitesmoke;
}

h3 {
    margin: 0;
/*    color:rgb(224,238,24); */
    color:whitesmoke;
}

.top-nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.top-nav li {
    margin: 0 10px;
}

.top-nav a {
    font-family: "Cascadia Code","Consolas","Lucida Console","Menlo", "Monaco", "Courier New", "Courier", monospace;
    color: white;
    text-decoration: none;
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
}

main {
    flex: 3;

/*    background-color:rgb(255,255,245);  Ivory plus 5 blue */
    background: #b3d0f5;
    color: #002fa7;
    font-family: "Cascadia Code","Consolas","Lucida Console","Menlo", "Monaco", "Courier New", "Courier", monospace;       
    line-height: 1.5;
    padding: 20px;
    margin-right: 20px;

}

li {

    margin-bottom: 10px;
}

aside {
    flex: 1;
    background: #e9e9e9;
    color: #4169e1;
    padding: 20px;
}

.side-nav ul {
    padding: 0;
    list-style: none;
    color: #4169e1;
}

.side-nav li {
    margin-bottom: 10px;
    color: #4169e1;
}

.side-nav a {
    text-decoration: none;
    color:#4169e1;;
}

footer {
    background-color: #b3d0f5;
    color: white;    
    text-align: center;
    padding: 2px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}