@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
    font-family: "Share Tech Mono", monospace;
}

body {
    background-color: black;
    z-index: 1;
    color: white;
    padding: 20px;
}

h1 {
    font-family: "Share Tech Mono", monospace;
    color: white;
    z-index: 1;
}

h3 {
    color: white;
    /* opacity: 75%; */
}

#landing-name {
    font-size: 4em;
    margin: 0;
    padding: 0;}

#landing-container {
    /* background-color: red; */
    text-align: center;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Optional: set a max width */
    height: 100vh; /* Full viewport height */
}

#landing-menu {
    /* background-color: green; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-bottom: 0;
    overflow: visible;
    z-index: 1000;
}

#cow-about {
    position: absolute;
    top: 600px;
    left: 270px;
}

#cow-portfolio {
    position: absolute;
    top: 668px;
    left: 580px;
    rotate: 3deg;
}

#cow-qualifications {
    position: absolute;
    top: 570px;
    left: 800px;
}

#cow-service {
    position: absolute;
    top: 640px;
    left: 1200px;
}

#container3D {
    position: absolute;
    inset: 0;
    /* background-color: blueviolet; */
    z-index: 100;
    pointer-events: none; /* FIXME: animation when pointed at? */

}

#landing-container {
  perspective: 800px;
}

.heading {
  display: inline-block;
  transform-style: preserve-3d;
  will-change: transform;

  /* If you're using metallic gradient */
  background: linear-gradient(
    120deg,
    #777 0%,
    #eee 20%,
    #999 40%,
    #fff 50%,
    #999 60%,
    #777 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;

  /* IMPORTANT FIX */
  color: #fff; /* fallback so it never disappears */
}

/* COWS */

.menu-cows {
    /* background-color: thistle; */
    position: absolute;
    cursor: pointer;
    will-change: transform;
    color: white;
    text-decoration: none;
    z-index: 3000;
}

p {
    margin-bottom: 50px;
}

ul {
    margin-bottom: 50px;
}

#portrait-image {
    padding: 30px;
}

#about-me-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    width: 80%;
}

#ufo-image {
    position: absolute;
    top: 50px;
    right: 200px;
    width: 100px;
    z-index: 0;
}
