.box {
  width: 465px;
  min-height: 600px;
  padding: 10px;
  border: 2px solid #a0c7a0;
  background-color: white;
  border-radius: px;
}

.box2 {
  width: 200px;
  min-height: 600px;
  padding: 10px;
  border: 2px solid #a0c7a0;
  background-color: white;
  border-radius: px;
}
.box3 {
  width: 200px;
  min-height: 600px;
  padding: 10px;
  border: 2px solid #a0c7a0;
  background-color: white;
  border-radius: px;
  justify-content: center
}

.page {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 150px
}
img {
    display:block;

    }
body {
  background:url("assets/gingham-pastel-green.jpg");
}
.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}
.title{
  font-family: "Press Start 2P", sans-serif;
  color: #7ea77e;
  -webkit-text-stroke: 1px #a4c5a4;
}

@font-face {
  font-family: 'meditative';
  src: url('local_fonts/Meditative.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.mbtext{
  font-family: "meditative", sans-serif;
  color: #7ea77e;
  font-size: 19px
}

.vhs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.15) 0px,
      rgba(0,0,0,0.15) 1px,
      transparent 1px,
      transparent 2px
    );
}

.page {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sbbutton {
  display: inline-flex;
  width: 199px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background-color: #7ea77e;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bolder;
  font-family: 'meditative', sans-serif;
  margin: 2px;
}

.sbbutton:hover {
  background-color: #769776;
}

.smalltext{
  font-family: 'meditative', sans-serif;
  color: #7ea77e;
  font-size: 15px

}

.imagesflex{
  justify-content: center;
  margin-top: 30px
}

.cornerleaf{
  position:fixed;
  z-index: 999;
  pointer-events: none;
}

.top-right {
  top: 0;
  right: 0;
  width:450px;

}
.bottom-left {
    left: 0;
    bottom: 0;
    width: 450px;
    transform: rotate(180deg);
}

.boxprofile {
  width: 500px;
  min-height: 600px;
  padding: 10px;
  border: 2px solid #a0c7a0;
  background-color: white;
  border-radius: px;
  overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.media-card {
    width: 120px;
    text-align: center;
    
}

.media-card img {
    width: 125px;
    height: 125px;
    object-fit: scale-down;
    border-radius: 9px;
    display: block;
    margin: 0 auto; 

    
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marqueetext{
  font-family: "meditative", sans-serif;
  color: #7ea77e;
  font-size: 25px
}

.blog-box {
    width: 500px;
    height: 400px;
    overflow-y: auto;
    background-repeat: repeat;
    padding: 15px;
    border-radius: 5px;
}

.entry {
    margin-bottom: 25px;
    border-bottom: 1px dotted #555;
    padding-bottom: 15px;
}

.entry h2 {
    margin: 0;
}

/* separate css for color/texture */

.blog-box { 
  background-color: #f5f1df;

  background-image:
    radial-gradient(#00000010 1px, transparent 1px);

  background-size: 5px 5px;
}

a {
  text-decoration: none;
}

.box2text{
  font-family: 'meditative', sans-serif;
  color: #7ea77e;
  font-size: 25px;
  margin-top: -3px
}
.imood {
    margin-top: -20px;
    display: block;
}

/* scroll */

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #efeadf;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#78b66b, #4f7d49);
    border-radius: 999px;
    border: 3px solid #efeadf;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#8bca7d, #5c9155);
}

/* and because I use firefox...*/

html {
    scrollbar-width: thin;
    scrollbar-color: #5b8a5b #e8e4d8;
}