body {
  background-image: url(paperbackground.png);
  background-attachment: fixed;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

    /* 2. Behavior for smaller screens (Minimized/Mobile) */
    @media (max-width: 1024px) { 
      .everything {
        overflow-x: auto; /* Restores the scrollbar when screen is small */
      }
    }

@font-face {
  src: url(yoster.woff2);
  font-family: 'pixeloid';
  }


@font-face {
  src: url(basiic.woff2);
  font-family: 'basiic';
  }

* {
  cursor: url(cursor.gif), progress;
}


  .everything {
  width: 100%;
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  }

#everything {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  zoom: var(--scale);
}

:root {
  --scale: 0.90;
}
  
.header {
  display: flex;
  background-color: white;
  width:70%;
  height:100px;
  align-self: center;
  align-content: center;
  border-radius: 10px;
  border: 10px solid white;
  box-shadow: 2px 3px 5px #9996a9;
}

.inside-header {
  flex: 1;
  height: 100%;
  background-image: url(luckystargif.gif);
  mask-image:linear-gradient(
  to left,
 rgba(0, 0, 0, 1) 30%,
 rgba(0, 0, 0, 0) 100%
  );
  background-size: 100%;
  background-position: 0px 250px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 238, 0.8),
    inset -3px -3px 0px 0px rgba(7, 0, 35, 0.19),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.title {
  position: absolute;
  inset: 0;
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1;
  font-size: 60px;
  text-align: left;
  margin-left: 285px;
  margin-top:35px;
  font-family:'pixeloid';
  color: #6699dd;
  text-shadow:
    4px 4px 0px white,
    -4px -4px 0px white,
    4px -4px 0px white,
    -4px 4px 0px white;
}

.subtitle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  font-size: 14px;
  margin-left: 245px;
  width: 200px;
  height: 70px;
  margin-top: 16px;
  font-family:'pixeloid';
  color: #6699dd;
  text-shadow:
    2px 2px 0px white,
    -2px -2px 0px white,
    2px -2px 0px white,
    -2px 2px 0px white;
}

.marquee-wrap {
  display: inline;
  background-color: #ffffff;
  width: 100%;
  height: 30px;
  margin-top: 10px;
  box-shadow: 2px 3px 5px #9996a9;
  box-sizing: border-box;
  overflow:hidden;
  padding-top: 1px;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  font-family: 'basiic';
  color: #3f669b;
  margin-bottom: 20px;
}

.marquee-content p {
  display: inline-block;
  margin: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.main {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  justify-content: center;
  height: 500px;
  margin-top: 20px;
  gap: 60px;
}

.center-column {
  display: flex;
  flex-flow: column;
  height:500px;
  align-self: top;
}

.intro {
  display: block;
  justify-content: center;
  align-items: center;
  background-color: white;
  height: 500px;
  width: 100%;
  border: solid 10px white;
  border-radius: 19px;
  box-shadow: 2px 3px 5px #9996a9;
}

.image {
  position: absolute;
  margin-top: 30px;
  margin-left: -45px;
  z-index: 1000;
  transition: .4s;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-size: contain;
  transform: rotate(-6deg)
  
}

.envelope-container {
  position: absolute;
  margin-top: 340px;
  margin-left: 610px;
  animation: float 3s ease-in-out infinite;
}

.envelope-container::after {
    content: "if youd like to contact me for anything, my dms are always open on discord @yewmew, i dont get to see most msgs on other sites.";
    font-family: "basiic";
    position: absolute;
    top: 25%;         
    right: 100%;       
    transform: translateY(-50%); 
    background-color: white; 
    padding: 7px 7px 7px 7px;
    min-width: 200px;   
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease; 
    z-index: 10;
    border: 1px solid #6699dd; 
}

.envelope-container:hover::after {
    opacity: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.image:hover {
  transform: rotate(-3deg);
}

.intro-lace {
    width: 100%;
    height: 46px;
    background-image: url(bluelace.png);
    background-repeat: repeat-x;
    background-size: 55px;
    bottom: 0;
    left: 0;
    transform-origin: center;
}

.inside-intro {
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to bottom,
    #ffffff 35%,
    #f8feff 15%);
  border-radius: 10px;
  border: dashed 2px #6699dd;
    box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 238, 0.8),
    inset -3px -3px 0px 0px rgba(7, 0, 35, 0.19),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.aboutme-border {
  background-color: white;
  border: solid 6px white;
  width: 500px;
  height: 300px;
  margin-right: 40px;
  margin-top: 35px;
  float: right;
  border-radius: 10px;
}

.aboutme {
  width: 98%;
  height: 98%;
  background-color: white;
  border: dashed 2px #6699dd;
  border-radius: 10px;
}

.aboutme-text {
  margin-left:20px;
  margin-top: 23px;
  margin-right: 20px;
  font-size: 14px;
  font-family: 'basiic';
}

.hello-img {
  margin-left:5px;
}

.aboutme-bighello{
  font-size: 20px;
  color:#6699dd;
  font-family: 'pixeloid';
  display: flex;
  margin-left: 160px;
  margin-bottom: 5px;
}

.right-column {
  height: 500px;
}

.left-panel {
  position: relative;
  background-color: white;
  width:90%;
  border: solid 10px white;
  border-radius: 19px;
  box-shadow: 2px 3px 5px #9996a9;
}

.inside-left-panel {
  background-image: 
    linear-gradient(to bottom,
    #ffffff 35%,
    #f8feff 15%);
  border-radius: 10px;
  align-self:auto;
  position: relative;
  height: 496px;
  border: dashed 2px #6699dd;
    box-shadow:
    inset -3px -3px 0px 0px rgba(4, 8, 46, 0.19),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.directory-top-deco {
  position: absolute;
  z-index: 100;
  margin-top: -110px;
  margin-left: -10px;
}

.directory-title {
  font-family: 'pixeloid';
  color: #3f669b;
  margin-left: 36px;
  margin-top:25px;
  font-size: 18px;
  margin-bottom: 7px;
}

.socials-title {
  font-family: 'pixeloid';
  color: #3f669b;
  margin-left: 25px;
  margin-top:25px;
  font-size: 17px;
  margin-bottom: 7px;
}

.button-wrapper {
width:100%;
background-color: white
}

.button {
  width: 83%;
  padding-left: 15px;
  height:36px;
  border: 1px solid #6699dd;
  background-image: linear-gradient(white 50%, #f2f8ff 100%);
  display: flex;
  align-items: center;
  color: #6699dd;
  font-size: 14px;
  margin-left:10px;
  font-family: 'basiic';
}

.button:hover {
  color: #3f669b;
}

.button img {
  margin-left: -7px;
  margin-right: 10px;
}
.left-panel-deco {
  position: absolute;
  width: 100px;
  z-index: 999;
  margin-top: 430px;
  margin-left: 160px;
}

.left-panel-two {
  background-color: white;
  border-radius: 10px;
  border: solid white 7px;
  height: 270px;
  width:93%;
  margin-top:50px;
  box-shadow: 2px 3px 5px #9996a9;
}

.updatelog {
  border-radius: 10px;
  align-self:auto;
  position: relative;
  height: 99%;
  border: dashed 2px #6699dd;
    box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 238, 0.8),
    inset -3px -3px 0px 0px rgba(7, 0, 35, 0.19),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.updatelog-title {
  font-family: 'pixeloid';
  font-size: 20px;
  margin-left: 28px;
  margin-top: 25px;
  color: #3f669b;
}

.updatelog-box {
  width: 80%;
  height: 50%;
  background-color: white;
  margin-left: 20px;
  margin-top: 10px;
  border-radius: 10px;
  border: 2px dashed #6699dd;
}

.updatelog-text {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  font-family: 'basiic';
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: none;
}

.updatelog-deco {
  margin-top: 15px;
  margin-left: 40px;
}

.right-panel-one {
  background-color: white;
  height: 500px;
  width:100%;
  border: solid 10px white;
  border-radius: 19px;
  box-shadow: 2px 3px 5px #9996a9;
}

.rightpanelone-inside {
    background-image: 
    linear-gradient(to bottom,
    #ffffff 35%,
    #f8feff 15%);
  border-radius: 10px;
  height: 100%;
  border: dashed 2px #6699dd;
    box-shadow:
    inset 3px 3px 0px 0px rgba(255, 255, 238, 0.8),
    inset -3px -3px 0px 0px rgba(7, 0, 35, 0.19),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.right-bottomdeco {
  position: absolute;
  z-index: 100;
  margin-top: 400px;
  margin-left: 200px;
}

.stamps-box {
  margin-left: 25px;
  margin-top: 10px;
}

.rightpanel-deco {
  position: absolute;
  width: 100px;
  z-index: 999;
  margin-top: 440px;
  margin-left: 190px;
}

.left-column {
  display: flex;
  flex-direction: column;
}


.footer {
  background-color: white;
  width: 330px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family:'basiic';
  box-shadow: 2px 3px 5px #9996a9;
  margin-bottom: 30px;
  margin-top: 40px;
}