/* CSS styles */
h1#typedName {
  font-family: 'Cascadia Code', sans-serif;
  color: #ae2012;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
  animation: typing 1s steps(20) forwards;
  margin: 0; /* Remove default margin */
}



body {
  font-family: 'Cascadia Code', monospace;
  background-color: #edede9;
  margin: 0; /* Remove default margin */
}

/* Rest of your CSS styles for .header-bar, .hamburger-menu, .hamburger-icon, .search-box, and .input */

/* Initially hide the hamburger and search icons */
.hamburger-icon{
  font-size: 30px;
    padding: 0px;
    transform: translate(2.3px, -4.3px);
    color: #ae2012;
  opacity: 0;
  transition: opacity 1s ease-in-out;
    border: none;
    background-color: transparent;

}

.inline_hyperlink_button{
    padding: 0px;
    border:none;
    color: #ae2012;
    font-size: 20px;
    font-family: "Cascadia Code";
    padding-left: 10px;
}


.hamburger-menu{
    margin: 10px;
    width: 35px;
    height: 35px;
    display: inline-block; /* Make it inline-block to wrap around the button */
    position: relative; /* Needed for positioning the button inside the div */
    border: 4px solid transparent;
    border-radius: 10px;
}
.hamburger-menu:hover {
    border: 4px solid #ae2012;

}
.fa-search {
  color: #ae2012;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.search-form{
  margin-bottom: 0px;
}
.box{
    position: relative;
    opacity: 0;
  transition: opacity 1s ease-in-out;
}

.header-bar {
  display: flex;
  align-items: center; /* Center vertically */
  background-color: #edede9;
  padding-top: 10px;
  padding: 10px;
}

/* Style the hamburger menu, name, and search box */

#typedName, .search-box {
  margin: 10px; /* Add spacing between elements */
}




.input {
    padding: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: 4px solid #ae2012;
    border-radius: 50px;
    box-sizing: border-box;
    font-family: 'Cascadia Mono';
    font-size: 18px;
    color: #ae2012;
    outline: none;
    transition: .5s;
}

.box:hover input{
    width: 350px;
    background: #edede9;
    border-radius: 10px;
}

.indent p,a{
    padding-left: 10px;
}

.box i{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-50%,-50%);
    font-size: 18px;
    color: #ffd52d;
    transition: .2s;
}

.box:hover i{
    opacity: 0;
    z-index: -1;
}

/* The sidebar menu */
.sidebar {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    margin-left: 0px;
    background-color: #edede9; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.2s; /* 0.5 second transition effect to slide in the sidebar */
}

/* The sidebar links */
.sidebar_link {
    font-family: 'Cascadia Code', sans-serif;
    color: #669bbc;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;

    margin: 0; /* Remove default margin */
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #669bbc;
    display: grid;
}



/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
    color: #4C88AD;
}
.content-wrapper{
    display: flex;
}

/* Position and style the close button (top right corner) */
.sidebar {
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 0px;
}

@media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
}

#main {
    flex: 1;
    margin-left: 27px;
    margin-top: -6px;
}

#mySidebar {
    width: 0px;
    background-color: #edede9;
    color: white;

}

@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
        border-right: 2px solid transparent;
    }
}

.skillsMapGraphic{

    text-align: center;
    display: grid;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-height: 90vh;
    width: auto;
}

.resume-viewer-class{
    width: 80%;
    text-align: center;
    display: grid;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    height: 80vh;
}
#voxel_tracer{
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;  /* Prevent line breaks */
    overflow-x: auto;    /* Enable horizontal scrolling */
    width: 80vw;         /* Set a width */
    height: 40vh;       /* Set a height */
}
#voxel_tracer img{
    height: 40vh;
}

.plotter_images img{
    height: 40vh;
}

@media only screen and (max-width: 768px) {
.hamburger-icon{
    font-size: 40px;
}

}

#contact-me-footer{
    background-color: #d8e2dc;
}
