body {
    background-image: url("images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
     background-attachment: fixed;
     background-position: center;
    font-family: 'VT323', monospace;
    cursor: url("cursors/cursor5.cur"), auto;
    
}

.logo {
    display: block;
    margin: auto;
    margin-top: 80px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;

    
}

nav a {
    color: antiquewhite;
    text-decoration: none;
    background-color: #1F0E1C;
    padding: 10px 16px;
    font-size: 25px;
}

nav a:hover {
  background: #2779b5;
}

.welcome-text {
    position: absolute;
    left: 200px;
    top: 250px;
    width: 500px;
    padding: 20px;
    font-size: 15px;
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
}

.cat-gif {
    width: 30px;
}

.dancing-girl {
    width: 100px;
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    position: absolute;
    left: 760px;
    top: 250px;
    padding-top: 15px;

}

.guestbook {
     background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    width: 390px;
    text-align: center;
    position: absolute;
    left: 880px;
    top: 250px;
    padding-bottom: 80px;
}

.click-gif {
    width: 300px;
    padding-top: 50px;
}

.Interests {
    width: 630px;
    padding: 15px;
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    position: absolute;
    top: 460px;
    left: 200px;
}

.star-gif {
    width: 20px;
}

.currently { 
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    width: 360px;
    padding: 15px;
    position: absolute;
    top: 630px;
    left: 880px;
}

.blinkie {
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    width: 630px;
    padding: 15px;
    position: absolute;
    top: 750px;
    left: 200px;
    padding-bottom: 27px;
}

.sword {
    width: 200px;
}

.welcome-diary {
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    padding: 10px;
    font-size: 35px;
    width: 460px;
    padding-left: 60px;
    position: absolute;
    top: 250px;
    left: 470px;
}

.diary-log-1 {
     background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0#3a1f35;
    width: 800px;
    padding: 15px;
    position: absolute;
    left: 300px;
    top: 430px;
}

.hotdrink {
    width: 50px;
}

.page-end-spacer {
  height: 220px;   
  width: 100%;
  display: block;
  pointer-events: none; 
}

.carousel {
    position: relative;
    width: 80%;             /* responsive width */
    max-width: 350px;       /* keeps your original size on small screens */
    padding: 15px;
    background-color: #1F0E1C;
    color: white;
    box-shadow: 8px 8px 0 #3a1f35;
    margin: 40px auto;      /* centers the carousel and adds spacing above/below */
    text-align: center;     /* center text inside slides */
}

.carousel-item {
    display: none;
    text-align: center;
}

.carousel-item.active {
    display: block;
}

.carousel img {
    width: 100%;
    border: 2px solid #fff;
    display: block;
    margin: 0 auto;        /* center images inside slides */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1F0E1C;
    color: white;
    border: none;
    font-size: 30px;
    padding: 5px 10px;
    cursor: pointer;
}

.carousel-btn.left {
    left: -10px;
}

.carousel-btn.right {
    right: -10px;
}

.carousel-btn:hover {
    background-color: #2779b5;
}



