html {
  height: 100%;
  width: 100%;
}
  
body {
  background-color: black;
  color: white;
  font-family: "VCR OSD Mono", monospace, system-ui;
  font-weight: 400;
  font-style: normal;
}
  
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
  
.home-page {
  position: relative;
  display: flex;
  background-color: black;
}
  
.navbar {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  color: white;
}
  
.navbar a {
  float: right;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
  
.navbar a:hover {
  background-color: #C0737A;
  color: white;
}
  
.navbar a.active {
  background-color: #ff8ba7;
  color: white;
}
  
.navbar a.home-page-link {
  float: left;
}
  
.navbar  .icon {
  display: none;
}
  
.navbar .scrolled {
  background-color: black;
  transition: background-color 0.3s ease; 
}
  
@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
}
  
@media screen and (max-width: 600px) {
  .navbar.responsive {position: relative;}
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
  
@font-face {
  font-family: 'VCR OSD Mono';
  src: url('Fonts/VCR_OSD_MONO.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.sources-section {
  background-color: black;
  width: 70%;
  margin-top: 5%;
  margin-left: 12%;
  margin-bottom: 3%;
  padding: 3%;
}

.sources-section h2{
  text-align: center;
  padding-top: 1%;
  font-size: 40px;
}

h2, hr {
  margin: 10px;
}

.sections {
  font-size: 1.5rem;
  margin-bottom: 1%;
}

.individual-sources {
  margin-bottom: 3%;
}

.sources a {
  color: #ff8ba7;
}

.sources a:hover {
  color: #C0737A;
}

footer {
  background-color: black; 
  color: white;
  padding: 10px 20px; 
  text-align: center; 
}
  
.footer-content {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  max-width: 90%; 
  margin: 0 auto;
}
  
.social-media-links {
  flex-grow: 1; 
  text-align: center;
  flex-basis: 50%;
}
  
.social-media-links a {
  color: white; 
  text-decoration: none; 
  margin: 0 10px; 
  font-size: 20px; 
}
  
.by-me {
  margin-left: auto;
}
  