/*Ham menu*/
.hamburger {
  position: fixed;
  top: 1rem;
  left: 1rem;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 10px;
}
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(10%, 30%) rotate(140deg);
    transition: .2s ease;
}
.hamburger.active span:nth-child(2) {
   opacity: 0%;
}
.hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translate(10%, 30%) rotate(-140deg);
    transition: .2s ease;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px); /* Apply blur to background */
  background-color: rgba(0, 0, 0, 0.4); /* Optional dark tint */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000; /*top of the top*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu-content {
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}
.menu-content a {
  display: block;
  margin: 1rem 0;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: transform 0.2s;
}
.menu-content a:hover {
  color: brown;
}

/*hero section*/
@font-face {
    font-family: reverie;
    src: url(/fonts/REVERIE.otf);
}
#about-title-box {
    position: inherit;
    width: 100%;
    height: max-content;
    background-color: black;
    box-shadow: 60vw 10px 15px 5px #000000;
    z-index: 3;
}
.text-6xl {
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 2vh;
    color: rgb(255, 246, 246);
}
#about-section-box {
    width: 100vw;
    display: block;
    z-index: 1;
}
#beto-bw-about {
    width: 90%;
    margin: 5vw;
    z-index: 1;
}
#about-text{
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    margin-left: 2vw;
    width: 90vw;
    overflow: scroll;
    z-index: 0;
}
#about-text {
    margin: 5vw;
    text-align: justify;
    overflow: scroll;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE 10+ */
}
#about-text::-webkit-scrollbar {
    display: none;               /* Chrome, Safari */
}
#about-paragraph-link {
  color: yellow;
}

footer{
  margin-bottom: 5vh;
  text-align: center;
  color: brown;
}

::selection {
  background-color: brown; /* Change this to your desired background color */
}

/* For Firefox compatibility */
::-moz-selection {
  background-color: brown;
}