/* Website Theme */
html {
    background-color: rgb(20, 20, 20);
    color: white; 
}
#navigation {
    background-color: black;
    position: sticky;
    top: 0;
    padding: 5px;
    border: 5pxpx;
    margin: 5px;
}
body {
    padding: 0px;
    border: 0px;
    margin: 0px;
}

.h1, .h2, .h3, p {
    padding: 5px;
    margin: 5px;
    border: 5px;
    outline-style: solid;
}

 /* Image isn't centered  but the absolute text is*/
#frenchtower {
    width: 100%;
    height: auto;
    position: static;
}

#absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* account for text width */
    text-align: center;
}

#footer {
    position: relative;
    left: 0;
    bottom: 0;
    background-color: black;
    width: 100%;
}

#copyright {
    padding: 5px;
}

#backtotop {
    color: white;
    position: fixed;
    right: 5px;
    bottom: 10px;
    z-index: 5;
}