html {
    background-color: #050505BF;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                      url(https://wallpapers.com/images/hd/dark-grunge-1366-x-768-wallpaper-c1qzmi2glubprva5.jpg);
    font-family: "Noto Sans Mono", monospace;
    color: #dddddd;
    scroll-behavior: smooth;
}

h1 {
    display: flex;
    font-size: 0.9rem;
    width: 38rem;
    margin: 1rem auto;
}

h2 {
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 0;
}

mark {
    color: #fff7f0;
    background-color: #998d8d30;
    white-space: pre;
    font-size: 1rem;
}

p {
    font-size: 0.9rem;
}

.panel {
    width: 40rem;
    min-height: 100%;
    margin: auto;
    background: #050505BF;
    padding: 2rem;
    padding-top: 10rem;
    position: relative;
    z-index: 2;
}

.header {
    position: fixed;
    background-color: #050505;
    width: 40rem;
    top: 0;
    padding-top: 2rem;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 38rem;
    margin: 0 auto;
}

#about {
    scroll-margin-top: 10rem;
}

#school {
    scroll-margin-top: 10rem;
} 

#projects {
    scroll-margin-top: 10rem;
}

#contact {
    scroll-margin-top: 10rem;
}

a {
    text-decoration: none;
    color: #998d8d;
    font-size: 0.9rem;
}
    
a:hover {
    color: #fff7f0;
}

hr {
    border-top: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, transparent, #998d8d, transparent);
}
    
input {
    width: 39rem;
    font-family: monospace;
    background: transparent;
    outline: none;
    color: #fff7f0;
    border: #998d8d solid 1px;
    border-bottom: none;
}
   
#submit {
    width: 39.3rem;
    border: #998d8d solid 1px;
    border-top: none;
}
    
#submit:hover {
    cursor: pointer;
    background: #998d8d30;
}
    
textarea {
    width: 39rem;
    max-width: 39rem;
    height: 10rem;
    max-height: 10rem;
    background: transparent;
    outline: none;
    color: #fff7f0;
    font-family: monospace;
    border: #998d8d solid 1px;
}
