html, body {
  font-family: "EnvyCodeR Nerd Font Mono", monospace;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100vw;
  overflow-y: auto; 
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

#background {
  font-family: "EnvyCodeR Nerd Font Mono", monospace;
  background: #333366;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

#foreground {
  font-family: "EnvyCodeR Nerd Font Mono", monospace;
  background: #333366;
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

#content {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content:  center;
  color: #FFF;
  box-sizing: border-box;
  padding: 10px 0;
}

#window {
  width: 800px;
  max-width: 90%;
  background-color: #222439;
  outline: 1px solid white;
  outline-offset: -10px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px 10px;
}


#name {
  font-family: "EnvyCodeR Nerd Font Mono", monospace;
  font-size: 7px;
  line-height: 7px;
}

#window hr {
  width: 100%;
}

#window p {
  margin: 5px 20px;
  font-size: 1.2em;
}

#social-links {
  margin: auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

#github-link, #linkedin-link {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

#github-link:hover, #linkedin-link:hover {
  background-color: #131520;
}

#github-logo, #linkedin-logo {
  width: 24px;
  margin-right: 10px;
}

@media (max-width: 800px) and (min-width: 500px) {
  #window { margin: 5px 50px; }
}

@media (max-width: 499px) {
  #background { display: none; }
  #foreground { display: none; }
  body { background: #333366; }
}
