.hero-image {
    position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
    background-color: black;
}

.title-box {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#prev {
    color: white;
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    font-size: 1.2em;
    margin: 0;
    margin-top: 10px;
    line-height: 1; 
    font-weight: 500; /* 500 for regular, 600 for slight bold */
    margin-right: 10px;
}

.title-text {
    color: antiquewhite;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* font-family: San Francisco; */
    /* font-family: SF Pro Display; */
    letter-spacing: 1px;
    font-size: 3em;
    text-decoration: none;
}

#typewriter {
    color: white;
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    font-size: 1.2em;
    width: 50%;
    margin: 0;
    margin-top: 10px;
    margin-left: 10px;
    line-height: 1; 
    font-weight: 500; /* 500 for regular, 600 for slight bold */
}

.blinking-cursor {
    display: inline-block;
    font-weight: bolder;
    font-size: 1em;
    color: white;
    animation: blink 1s step-end infinite;
}
  
@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.main-content {
    height: auto;
}

#stickyText {
    position: sticky;
    top: calc(var(--header-height, 0) + 0px);
    background-color: black;
    padding: 5px 0;
    text-align: center;
    color: antiquewhite;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2em;
    letter-spacing: 1px;
    text-decoration: none;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    box-shadow: 0px 1.5px 5px rgba(0, 0, 0, 0.3);
}

#stickyText.visible {
    opacity: 1;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
    margin-top: 10%;
    pointer-events: none;
}

#introText {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    /* padding-top: 20%; */
    padding-bottom: 20%;
}

#introTitle {
    font-size: 3em;
}

/* #introduction {
    font-size: 1.2em;
    display: flexbox;
} */

#introduction {
    font-size: 1.4em;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    word-wrap: break-word;
    padding-bottom: 3%;
}

/* Mobile Devices */
@media screen and (max-width: 768px) {

    .title-text {
      font-size: 2em;
    }
  
    #prev, #typewriter {
      font-size: 1em;
      width: auto;
    }
  
    #typewriter {
      width: 80%;
    }
  
    #stickyText {
      font-size: 1.5em;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        margin-bottom: 8%;
      }
  
    #introTitle {
      font-size: 2em;
    }
  
    #introduction {
      font-size: 1em;
    }
  
    #introText {
      padding-top: 15%;
      padding-bottom: 15%;
    }
  }