#interactive-canvas {
  position: fixed;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; 
  pointer-events: none;
}


html {
  min-height: 100%;
}


* {
  max-width: 100%;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at center, #812929, #020024);
  background-size: cover;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;

}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #400000, #020024);
  z-index: -2;
}

section {
  height: auto !important;
  min-height: min-content !important;
  overflow: visible !important;
}

section:hover {
  transform: scale(1.05);
  transform-origin: top; 
  cursor: default; 
  box-shadow: 0 10px 30px rgba(255, 79, 55, 0.3);
}
.skill-message {
  backdrop-filter: blur(10px);
  border: 2px solid rgba(148, 137, 121);
  background-color: transparent;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  height: auto !important; 
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  main {
    margin-left: 0; 
    margin-top: 50px; 
    margin-bottom: 30px;
    padding: 10px;
    width: 100%;
  }
}