        /* Unvisited Link */
        a:link {
            color: #ff0000;
        }
        /* Visited Link */
        a:visited {
            color: #870000;
        }
        /* Mouse Over Link */
        a:hover {
            color: #fc6a6a;
            text-decoration: underline;
        }
        /* Click on Link */
        a:active {
            color: #fcd6d6;
        }

* {
  box-sizing: border-box;
}

/* Style the side navigation */
.sidenav {
  height: 100%;
  width: auto;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
background-color: #3d3846;
background-image: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(0,0,0,0.06));
border: 0px solid #444;
box-shadow: inset 1px 1px 0px rgba(255,255,255,0.4), inset -1px -1px 0px rgba(0,0,0,0.4), 2px 2px 5px rgba(0,0,0,0.3);
  overflow-x: hidden;
}


/* Side navigation links */
.sidenav a {
  color: red;
  padding: 10px;
  text-decoration: none;
  display: block;
background-color: #3d3846;
background-image: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(0,0,0,0.06));
border: 0px solid #444;
box-shadow: inset 1px 1px 0px rgba(255,255,255,0.4), inset -1px -1px 0px rgba(0,0,0,0.4), 2px 2px 5px rgba(0,0,0,0.3);
}

/* Change color on hover */
.sidenav a:hover {
background-color: #ff0000;
background-image: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(0,0,0,0.5));
border: 1px solid #444;
box-shadow: inset 1px 1px 0px rgba(255,255,255,0.4), inset -1px -1px 0px rgba(0,0,0,0.4), 2px 2px 5px rgba(0,0,0,0.3);
  color: black;
}

/* Style the content */
.content {
  margin-left: 200px;
  margin-top: 10px;
  border: 2px solid red;
  background-color: rgba(0,0,0,0.5);
  padding-top: 50px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 80px;
  text-align: center;
}


/* If you want text inside of the container */
.text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/*
Source - https://stackoverflow.com/a/38947999
Posted by j3ff
Retrieved 2026-07-18, License - CC BY-SA 3.0
*/

body {
  background: #8f0000;
background: linear-gradient(0deg, rgba(143, 0, 0, 1) 0%, rgba(66, 0, 0, 1) 100%);
  color: #ffffff;
}
h1 {
  color: #ffffff;
}
nav a {
  color: #ffffff;
}
footer {
  color: #ffffff;
}
html {
    height: 100%;
}
body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


body { width: 100vw;
height: 75vw;
max-height: 100vh;
max-width: 133.33vh;
margin: auto;
position: fixed;
top:0;bottom:0;
left:0;right:0;

}

.sidenav { width: 15vw;
height: 100vw;
max-height: 100vh;
max-width: 130vh;
margin-right: 50px;
position: fixed;
top:0;bottom:0;
left:1;right:0;

}

.blog {
  margin-left: 200px;
  margin-top: 10px;
  border: 2px solid red;
  background-color: rgba(0,0,0,0.5);
  padding-left: 30px;
}
html { overflow-y: scroll; }
body { position: absolute; }








