body { margin: 0; padding: 0; }
        html,
        body, 
        #map { height: 100%; }

    h1 {
        color:  rgb(149, 126, 143);
        font-family: "cheesecake", sans-serif;
        font-weight: 900;
        font-style: normal;
        text-align: center;}

    h2 {
        color: rgb(149, 126, 143);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: center;}
   h3 {
     color: rgb(149, 126, 143);
     font-family: Verdana, Geneva, Tahoma, sans-serif;
     text-align: Left;}

/* ? button */ 
.cta {
    position: fixed;
    margin: auto;
    left: 10px;
    top: 30px;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 100;
  }
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background:#eee5f1;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #551A8B;
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #551A8B;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background: rgb(149, 126, 143);
  }
  
  .cta:hover svg {
    transform: translateX(0);
  }
  
  .cta:active {
    transform: scale(0.95);
  }
/* Button Container */
.button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Button Styles */
.box {
    width: 122px;
    height: auto;
    float: left;
    transition: 0.5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 5px;
    text-align: center;
    margin: 2px;
    background: #eee5f1;
    text-transform: uppercase;
    font-weight: 800;
    left: -20px;
    font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    
  }
  
  .box:before, .box:after {
    position: absolute;
    content: '';
    box-sizing: border-box;
    transition: 0.3s transform linear;
  }
  
  .box:before {
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    transform: translateX(100%);}
  
  .box:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    transform: translateX(-100%);}
  
  .box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  
  .box:hover:before {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
  }
  
  .box:hover:after {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
  }
  
  button {
    color: black;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
  }

/* Canvas Styling */
.three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-me-text { 
width:315px;
height:328px;
position:fixed;
left:0px;
top:0px;
font-family: "cheesecake", sans-serif;
font-variation-settings: "opsz" 1;
font-style: normal;
text-align:left;
font-size:20px;
letter-spacing:0;
}
.about-me-tittle { 
width:815px;
height:700px;
position:fixed;
left:0px;
top:0px;
font-family: "cheesecake", sans-serif;
font-variation-settings: "opsz" 1;
color:rgb(149, 126, 143);
text-shadow: 
  -6px -6px 0px black, 
  2px -2px 0px black,  
  -2px 2px 0px black,  
  2px 2px 0px black;   
text-align:left;
letter-spacing:2px; 
}
.about-me-text { 
width:315px;
height:328px;
position:fixed;
left:0px;
top:0px;
font-family: "cheesecake", sans-serif;
font-variation-settings: "opsz" 1;
font-style: normal;
text-align:left;
font-size:20px;
letter-spacing:0;
}
.about-me-tittle { 

width:315px;
height:58px;
font-family: "cheesecake", sans-serif;
font-weight: 900;
font-style: normal;
position:fixed;
left:30px;
top:30px;
text-align:left;
font-size:30px;
letter-spacing:0;
z-index: 1000;

}
/* From Uiverse.io by vk-uiux */
.loader {
  position: relative;
  width: 33px;
  height: 33px;
  perspective: 67px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.loader div {
  width: 100%;
  height: 100%;
  background: rgb(149, 126, 143);
  position: absolute;
  left: 50%;
  transform-origin: left;
  animation: loader 2s infinite;
}

.loader div:nth-child(1) {
  animation-delay: 0.15s;
}

.loader div:nth-child(2) {
  animation-delay: 0.3s;
}

.loader div:nth-child(3) {
  animation-delay: 0.45s;
}

.loader div:nth-child(4) {
  animation-delay: 0.6s;
}

.loader div:nth-child(5) {
  animation-delay: 0.75s;
}

@keyframes loader {
  0% {
    transform: rotateY(0deg);
  }

  50%, 80% {
    transform: rotateY(-180deg);
  }

  90%, 100% {
    opacity: 0;
    transform: rotateY(-180deg);
  }
}
#map-loader {
  opacity: 1;
  transition: opacity 0.5s ease;
}

#map-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
