:root {
  --highlight-color: #ff00cc;
}

body {
  margin: 0;
  background-color: #27ae60;
  color: black;
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* height: 100vh; */
  text-align: center;
  min-height: 100vh;
  overflow-y: auto;
}

.signature {
    display: block;
    margin-bottom: 6.5rem;
    margin: 1rem auto;
    width: auto;
    max-width:100%;
    height: auto;
}

/* Styles for the profile image, including size, shape, and border */
img.signature:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

img.profile-image {
    
  width: 500px;
  height: auto;
  /* border-radius: 50%; */
  border: 5px solid #222;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.4), 
              0 4px 20px rgba(39,174,96,0.3);
  transform: perspective(600px) rotateY(10deg) rotateX(10deg);
  transition: transform 0.3s, box-shadow 0.3s;
}
img.profile-image:hover {
  transform: perspective(600px) rotateY(0deg) rotateX(0deg) scale(1.05);
  box-shadow: 10px 10px 30px rgba(0,0,0,0.6), 
              0 4px 20px rgba(39,174,96,0.5);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

img.music {
    width: 200px;
    height: auto;
}

img.video {
    width: 400px;
    height: auto;
}

h1 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 2px;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

nav a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #ff00cc;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 0.8rem;
  }

  img {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.2rem;
  }


  /* img {
    width: 100px;
    height: 100px;
  } */

  h1 {
    font-size: 1.2rem;
  }

  nav a {
    font-size: 0.9rem;
  }
}
.scene {
  perspective: 1000px;
}

.cube {
    cursor: grab;
    /* transition: transform 0.1s linear; */
    touch-action: none;
    user-select: none;
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(0deg);
    margin: 2rem auto;
    margin-bottom: 15rem;
  /* perspective: 1000px; */
  /* transition: transform 7s ease-in-out;  */
  /* Add this line */
  /* animation: rotateCube 5s infinite linear; */
}

@keyframes rotateCube {
  0% {
  }
  100% {
    transform: rotateY(360deg) rotateX(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #27ae60;
  opacity: 0.9;
  border: 2px solid #222;
}

.cube-front  { transform: rotateY(0deg) translateZ(150px); }
/* Back face of the cube, rotated 180 degrees along the Y-axis */
.cube-back   { transform: rotateY(180deg) translateZ(150px); }

/* Right face of the cube, rotated 90 degrees along the Y-axis */
.cube-right  { transform: rotateY(90deg) translateZ(150px); }

/* Left face of the cube, rotated -90 degrees along the Y-axis */
.cube-left   { transform: rotateY(-90deg) translateZ(150px); }

/* Top face of the cube, rotated 90 degrees along the X-axis */
.cube-top    { transform: rotateX(90deg) translateZ(150px); }

/* Bottom face of the cube, rotated -90 degrees along the X-axis */
.cube-bottom { transform: rotateX(-90deg) translateZ(150px); }

.cube-front img {
        touch-action: none;
    user-select: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

div.footer-nav {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  padding: 0rem 0;
  z-index: 100;
}

div.footer-nav nav {
  display: block;
  flex-direction: row;
  justify-content: center;
  gap: 10rem;
  align-items: center;
  margin-left: 2.5rem;
}

div.footer-nav nav a img {
  vertical-align: middle;
  width: 100px;
  height: auto;
  transition: transform 0.2s;
}
div.footer-nav nav a img.video {
  width: 200px;
  margin-left: 5rem;
  margin-right: 2rem;
}
div.footer-nav nav a img.gallery {
  width: 200px;
}

div.footer-nav nav a img:hover {
  transform: scale(1.2);
}

