/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', monospace;
  color: white;
  background-image: url('background.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  text-align: center;
  padding-top: 20px;

}

/* MAIN CONTENT */
.content {
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* Custom pastel scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(162, 191, 254, 0.2); /* #a2bffe but transparent */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(130, 160, 230, 0.6); /* darker + semi-transparent */
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2); /* optional: adds a soft border */
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 130, 210, 0.8); /* even darker on hover */
}
.about-section {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  margin-top: 60px;
  padding: 50px 30px;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(162, 191, 254, 0.4);
  overflow: hidden;
}

.about-content {
  margin-left: 140px; /* leaves space for the squid frame */
  color: #00334d;
}

.squid-frame {
  position: absolute;
  top: 30px;
  left: -60px; /* overlap the left side */
  width: 120px;
  height: 120px;
  background: url('squidframe.png') no-repeat center center;
  background-size: contain;
  z-index: 2;
}

.squid-frame {
  position: absolute;
  top: -40px;         /* lift it up to overlap from above */
  left: -90px;        /* push it more to the left */
  width: 160px;       /* make it BIGGER */
  height: 160px;
  background: url('images/squid-frame.png') no-repeat center center;
  background-size: contain;
  z-index: 10;        /* keep it on top */
}

.square {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(162, 191, 254, 0.5);
  z-index: 1;
  border-radius: 6px;
  
}

.square1 {
  top: 30px;
  left: -70px; /* push it to the left side */
}

.square2 {
  top: 120px;      /* or wherever you want vertically */
  left: -70px;     /* THIS is what makes it stay left */
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', sans-serif;
  background: url('background.gif') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow-x: hidden;
}

.main {
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-section {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  margin-top: 60px;
  padding: 50px 30px;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(162, 191, 254, 0.4);
  color: #00334d;
}

.about-content {
  margin-left: 140px;
}

.about-content h2 {
  margin-top: 0;
}

.squid-frame {
  position: absolute;
  top: -40px;        /* raise it above the box */
  left: -120px;      /* push it far left */
  width: 200px;      /* make the whole frame bigger */
  height: 200px;
  background: url('squidframe.png') no-repeat center center;
  background-size: contain;
  z-index: 10;
  pointer-events: none; /* makes it ignore mouse clicks if needed */
}


.squid-frame img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  clip-path: circle(45%);
  border-radius: 50%;
  margin: 5%;
}


.square {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(162, 191, 254, 0.5);
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.square1 {
  top: -20px;
  right: 20px;
}

.square2 {
  bottom: -20px;
  left: 40px;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(162, 191, 254, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(130, 160, 230, 0.6);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 130, 210, 0.8);
}

