  :root {
            --text: black;
            --border: black;
            --bg: #fbeeee;
        }

     body {
            background-image:url('https://shelbyjacksonart.neocities.org/images/ilydarkre.png');
            background-size: 400px;
            background-repeat: repeat;
            font-family: "Jersey 20", serif;
            color: var(--text);
            display: flex;
            flex-direction: column;
            align-items: center; 
            justify-content: center;
            min-height: 100vh;
            padding: 10px;
            margin: 0;
            width: 100%;
            max-width: 100vw; 
            overflow-x: hidden;
            font-size: 18px;
        }
          body::-webkit-scrollbar {
  width: 12px;             
  height: 12px;             
}


body::-webkit-scrollbar-track {
  background: black;
 
}


body::-webkit-scrollbar-thumb {
  background-color: #8b0000;
  border: 3px solid black;
}


body::-webkit-scrollbar-thumb:hover {
  background-color:#8b0000 ;
}
header {
    position: relative;
    height: 165%; 
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    top:20%;
    }
    
 header img {
    max-width: 1200px;
    height: auto; 
}

.container, .container2 {
    display: flex;
    max-width:1200px;
    justify-content: center;
    margin-top: 25px; 
}
.container2 {
 display: grid;
 grid-template-columns: repeat(3,1fr); 
  justify-content: center;
  width: max-content;
  margin: 2%;}
  
 
  

.nav {
  position: absolute;
  width: 250px;
  height: 475px;
  top: 5px;
  display: flex;
  flex-direction: column;
  gap:2px;
}
.nav a {
  text-decoration: none;
  border:4px solid;
  border-color:black;
  color: black;
  font-size: 24px;
  
  transition: all 0.3s ease;
}
.nav a:hover {
  background-color: #fbeeee;
  color: #cd1c18;
}
.box2 {
    position:relative;
    background-image:url('https://shelbyjacksonart.neocities.org/images/paper.PNG');
    background-size: contain;
    background-position: center;
    border-right: 2px solid;
    width: 700px;
    height: 1050px;
    display: block;
    grid-column: 2;
    grid-row: 1;
    overflow-y: auto;
    }
.box2::-webkit-scrollbar {
  width: 10px;             
  height: 10px;             
}
.box2::-webkit-scrollbar-track {
  background: white;}
.box2::-webkit-scrollbar-thumb {
  background-color: #8b0000;}
.box2::-webkit-scrollbar-thumb:hover {
  background-color: #8b0000;}
  
    .text-content {
  margin-left: auto;
  width: 555px;            
  padding-right: 20px; 
  text-align: left;
  line-height: 1.0;
  font-size: 25px;
  word-break: break-word;
  overflow-y: auto;
}
.box2 h2,h3,h4 {
  margin-bottom:3px;
  margin-top:0;
  }
.box2 img {
      height:100px;
      width:auto;}
      
.box3 {
    position:relative;
    background:#fbeeee;
    border: 10px solid var(--border); 
    text-align: center;
    width: 250px;
    height: 950px;
    display: block;
    font-size: 22px;
    margin: 25px;
    grid-column: 1; 
    grid-row: 1 ; 
  }
.box3 .text-content {
  
    text-align:left;
  }
  .box3 h1, h2, h3, h4 {
    line-height: 1.0;
    margin: 5px;
    font-size:30px;
    text-align:left;
    white-space: normal; 
    word-break: break-word;
  }
  .box4 {
    position:relative;
    background:#fbeeee;
    border: 10px solid; 
    text-align: center;
    width: 250px;
    height: 1055px;
    display: block;
    font-size: 22px;
    margin: 25px;
    grid-column: 3; 
    grid-row: 1 ; }
    
    .box4 h1 {
      font-size:30px;
      margin:5px;
      margin-top:10px;
    }
  .box4 .text-content {
    max-width: 250px;
    line-height: 1.0;
    font-size:25px;
    text-align:left;
    white-space: normal; 
    word-break: break-word;
   }
   .box4 .paragraph {
     top:5px;
    border:4px solid;
    border-color:black;
    padding:10px;
   }
   .box4 .interests {
    top:5px;
    border:4px solid;
    border-color:black;
    padding:10px;
    color: #8b0000;
   }
   .bottom{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height:250px;
     }
   .paintings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0; 
    max-width:245px;
    max-height:245px;
   }
   .paintings img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
}
   .music{
     display: flex;
      gap: 0;
   }
   .songs {
    display: flex;
    flex-direction: column;
    max-width:125px;
    height:auto;
    gap:0px;}
    
    .spotify {
    display: block;
    object-fit: cover;
    max-width:125px;
    height:auto;
    margin-left: 0;}
  .hny {
    max-width: 100%; 
    height: 200px; 
    display: block; 
    margin: 0 auto; }
  
    .boxgifs {
    display:flex;!important;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    height: auto;
    right:40%;
    
    }
.music .img-button {
  cursor: pointer;
  transition: 0.3s ease;
}

.music .img-button:hover {
  filter: brightness(1.2);
  transform: scale(1.05); 
}
  
    .color-change {
  animation: colorPulse 1s infinite;
}

@keyframes colorPulse {
  0%   { color: #900; }
  33%  { color: #8b0000; }
  66%  { color: black; }
  100% { color: #900; }
}
    
  img {
    max-width:100%;
    height:auto;
    display:block;
    margin: 0 auto;
  }
        h {
          font-size:25px}
          

.mee {
width:200px;
height:auto;
position:absolute;
top:-250px;
left:125px;
z-index: 10;
max-width:100%;
}
.thx {
  width:230px;
  height:auto;
  position:absolute;
  top:-30px;
  left:30%;
  z-index: 0;
  max-width:100%;
}

.clouds {
  position: relative;
  width:270px;
  height:auto;
  left:26px;
  grid-column:3;
  grid-row:1;
  margin-top:110%;
  
}
.instagram-container {
  max-width: 200px;
  height:200px;
  margin: auto;}

.background-text {
    position: absolute;
    top:35%;
    left:40%;
    width:70%;
    transform: translateY(-50%); 
    font-size: 19px;
    color: black; 
    z-index: 1; 
}
.guestbook {
    display: flex;
   flex-direction: column;
    border:4px solid;
    border-color:black;
  }
.guestbook-form {
  font-family: 'Jersey 20', sans-serif;
  background-color: #ffeef1;
  width: 230px;
  height:200px;
  display: grid;
  padding:5px;
}
.form-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
}
.guestbook-form input[type="text"],
.guestbook-form textarea {
  width: 80%;
  font-family: inherit;
  font-size: 1em;
  border: 2px solid #8b0000;
  box-sizing: border-box;
  gap:10px;
}
.guestbook-form button {
  grid-column: 1 / -1;
  gap:10px;
  padding: 8px 16px;
  background-color: #fff;
  border: 2px solid #8b0000;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  margin-top:10px;
}


        