.pfp-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#cover-image {
    width: 135px;
    border-radius: 8px;
    border: 1.7px solid #666666;
    display: block;
}

.button-container {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    border-radius: 6px;
}

.cover-image-button {
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #000;
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

.cover-image-button:hover {
    background-color: #d0f0ff;
}

body {
    text-align: center;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: serif;
    text-align: center;
    margin-bottom: 5px;
}

#under-construction {
    width: 600px;
}

#cloud-1 {
    position: absolute;
    width: 800px;
    opacity: 0.9;
    animation: move-left 90s linear infinite;
}

#cloud-2{
    position: absolute;
    width: 500px;
    opacity: 0.95;
    animation: move-right 50s linear infinite;
}

#cloud-3{
    position: absolute;
    width: 1000px;
    opacity: 0.8;
    animation: move-left 25s linear infinite;
}

#cloud-4{
    position: absolute;
    width: 650px;
    opacity: 0.9;
    animation: move-right 40s linear infinite;
}


@keyframes move-left {
    0%   { left: 100%; }
    100% { left: -1000px; }
}

@keyframes move-right {
    0%   { left: -1000px; }
    100% { left: 100%; }
}

#clouds-container {
    background-image: linear-gradient(to top, #a0d8ef, white);
    position: relative;
    height: 450px;
    overflow: hidden;
}

#sky {
    background-color: #a0d8ef;
    height: 100%;
}

.banner-link {
    color: #a0a0a0;
}

.hidden-message {
    color: #cdf0ff;
}


.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;

}

.project-card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.project-card:hover {
  transform: scale(1.03);
}

.project-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.project-card h3 {
  margin: 8px;
  font-size: 18px;
}

.project-card p {
  margin: 0 12px 12px 12px;
  font-size: 14px;
  color: #555;
}


.footer-image-wrapper {
  position: relative;
  width: auto;
  margin: 0 auto;
}

#surface-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

#fossil-image {
  position: absolute;
  bottom: 13%;
  right: 7%;
  width: 14%;
  transform: rotate(-30deg);
}

#fossil-image:hover {
  transform: rotate(-25deg) scale(1.1);
}

.footer-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);

  background-color: #482d0a;
  border-radius: 5px;
  
  padding-right: 10px;
  padding-left: 10px;
  color: #cbb9b3;
  font-size: 24px;
  font-family: 'Lato', sans-serif;;
}

#terminal {
  max-width: 960px;
  height: 300px;
  margin: 10px auto;
  padding: 20px;
  background-color: #1e1e1e;
  color: white;
  font-family: monospace;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  overflow-y: auto;

}

#output {
  white-space: pre-wrap;
  margin-bottom: 10px;
  text-align: left;

}

#terminal::-webkit-scrollbar {
  display: none;
}

.input-line {
  display: flex;
  align-items: center;
}

.prompt {
  margin-right: 5px;
}

#commandInput {
  background: transparent;
  border: none;
  outline: none;
  color: #00ff00;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
}

.terminal-link {
  color: orange;
  text-decoration: none;
}

.terminal-link:hover {
  color: rgb(182, 118, 0);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* handle */
::-webkit-scrollbar-thumb {
  background: #0000003c;
  border-radius: 10px;
}

/* handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0000006b;
}