html {
  height: 100%;
  width: 100%;
}

body {
  background-color: #636363;
  margin: 0;
  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;
}

.about-me-with-skills {
  display: flex;
  align-items: center; 
  margin: 5%;
  width: 90%;
  background-color: black;
}

.headshot {
  width: 30%; 
  margin-right: 5%; 
  border: 3px solid white;
  margin: 3%;
}

.content {
  display: flex;
  flex-direction: column;
  flex: 1; 
  padding: 5px; 
}

.about-me, .skills-section {
  margin-bottom: 15px; 
}

.about-me h2, .skills-section h2 {
  font-size: 40px; 
  text-align: center;
}

.about-me p {
  font-size: 16px; 
  line-height: 1.5; 
}

.skills {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
}

.skill {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  margin: 0 20px; 
}

.skill i {
  font-size: 30px; 
}

.skill .caption {
  margin-top: 10px; 
  font-size: 18px; 
}
@media screen and (max-width: 600px) {
  .about-me-with-skills {
    flex-direction: column;
    align-items: center; 
  }
  
  .headshot {
    margin-right: 0; 
    margin-top: 2%;
    margin-bottom: 20px; 
  }
}

.future-aspirations {
  background-color: black;
  width: 90%;
  margin: 3%;
  padding: 2%;
}

.future-aspirations h2 {
  text-align: center;
  font-size: 40px;
}

.fa {
  font-size: 24px; 
  color: white; 
}

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;
}

h2, hr {
  margin: 10px;
}