* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    background-color: #000000; 
    color: #7AFFF0;
    font-family: "My Soul", cursive;
    padding: 1em;
}

h1, h2, h3 {
    margin-top: .5em;
    margin-bottom: .5em;
}
/*LINKS*/

a {
    color: #00F068;
    font-family: "Bitcount Single", system-ui;
    text-decoration: none;
    padding: .3em;
    transition: 1s;
    
}

a:hover {
    text-decoration: underline;
    background-color:  #00F068;
    color: #000000;
    border-radius: 5px;
    
    
}

img {
    border: 1.7em groove #00F068;
}

.logo {
    border: .5em groove #00F068;
}

/*start menu bar*/

nav {
  height: 100%; /* Full-height */
  width: 15%; /* Desired width */
  position: fixed; /* Sticks menu to the screen */
  z-index: 1; /* Keeps menu in front of other elements */
  top: 0;
  left: 0;
  background-color: #01061E; 
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px; /* Add some space at the top of the links */
}

nav a {
  padding: .5em .75em .5em 1em;
  text-decoration: underline; /
  font-size: 1.3em;
  color: #02F72B;
  display: block; /* Makes each menu link occupy its own line */
  transition: 0.3s; /* Animates the hover effect */
}

nav a:hover {
  color: #000000;
  text-shadow: 2px 2px 2px #000000;
}

main {
  margin-left: 15%; /* Same as the width of the sidebar */
  padding: 1em 1em;
  padding-top: 20px; /* Same number as the top of the menu */
}

body {
  background-color: #000000;
}

