html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
  
body {
    background-color: #636363;
    color: white;
    font-family: "VCR OSD Mono", monospace, system-ui;
}
  
.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;
}
  
.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;
}
  
.navbar a.active {
    background-color: #ff8ba7;
}
  
.navbar a.home-page-link {
    float: left;
}
  
.navbar .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .navbar a:not(:first-child) {
        display: none;
    }
  
    .navbar a.icon {
        float: right;
        display: block;
    }
  
    .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;
}

.resume-section {
    background-color: black;
    width: 70%;
    margin: 11% auto;
    margin-top: 5%;
    margin-bottom: 6%;
    padding: 3%;
}

.heading-section {
    text-align: center;
    width: 100%;
    background-color: black;
}

.heading-section h2 {
    font-size: 40px;
}

h2, hr {
    margin: 10px;
}

.resume-content {
    display: flex;
    padding: 3%;;
}

.buttons-section {
    text-align: center;
}

button {
    background-color: #C0737A; 
    color: white; 
    width: fit-content;
    font-size: 18px;
    font-family: "VCR OSD Mono", monospace, system-ui;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.education-section, .experience-section, .skills-section {
    display: none;
}

.education-text {
   position: relative;
}

.dchs-pic {
    width: 50%;
    margin-right: 5%; 
    border: 3px solid white;
}

footer {
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-align: center;
    bottom: 0;
}
  
.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;
}
