body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: "Yellowtail", cursive;
    font-weight: 400;
    font-style: normal;    
}

.image-scroll-container {
    width: 100%;
    height: 19dvh; /* Adjust as needed */
    /*margin-top:7.5dvh;*/
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    /*border:1px solid black;*/
    opacity:0.6;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.image-scroll-container::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, and Opera */
}

.image-scroll-container img {
    height: 100%;
    display: inline-block;
    vertical-align: top;
}

.image-scroll-container:active {
    cursor: grabbing;
}

#center-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Sign Painter', cursive; /* Replace with actual font */
    border: solid 0.5vw;
    background-color: rgb(150 50 130 / 85%);    
    padding-bottom: 0.25vh;
    border-radius:15px;
}

h1 {
    font-size: 7dvw;
    text-align: center;
    color: rgb(215 29 186 / 64%);
    padding: 0vw 7vw;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.729);
    -webkit-text-stroke: 5px;
    margin:unset;
}

h3 {
    font-size: 1.5vw;
    text-align: center;
    color: rgb(201 1 219 / 31%);
    -webkit-text-fill-color: rgb(255 255 255 / 83%);
    -webkit-text-stroke: 0.5px;
    margin: unset;
}

.yellowtail-regular {
    font-family: "Yellowtail", cursive;
    font-weight: 400;
    font-style: normal;
  }