

body {
    overflow-y: auto; /* Enable vertical scrolling */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255,255,255);
    margin: 40px auto; /* Centered and adjustable space */
    padding: 50px;
    width: fit-content; /* Adjust to the content size */
    border: 10px solid #C4B1A0; /* Optional border */
}

.resize-image {
    width: 500px; /* Initial size, adjustable */
    height: auto; /* Maintain aspect ratio */
}


body {
    background-color: rgb(176,170,170);
    color: #FFFFFF;
    font-family: lato, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300vh;
   overflow: auto;

  body {

}

}

.container {
    text-align: center;
}

.spiral-title {
    font-size: 3em;
    animation: spiral 2s forwards;
}

@keyframes spiral {
    0% { transform: scale(3) rotate(0deg); }
    100% { transform: scale(7) rotate(360deg); }
}

.sub-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 335px; /* Adjustable size */
    height: 150px; /* Adjustable size */
    background-color: #000000;
    color: #FFFFFF;
    margin: 0.5px auto; /* Centered and adjustable space */
    border: 50px solid black; /* Optional border */
}

.sub-title {
    margin: 0;
    font-size: 1.1em;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    background: white;
    padding: 50px;
}

.main-video {
    width: 280px;
    height: 200px;
    transition: opacity 0.3s, filter 0.3s;
}

.flashlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 100px;
    background: rgba(248,248,248,1.5);
    mix-blend-mode: multiply;
    pointer-events: none;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.3s;
}

.image-wrapper:hover .flashlight {
    clip-path: circle(50px at 50% 50%);
}

.description {
    margin: 20px 0; /* Adjustable space */
}

.small-images {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjustable space */
}

.small-image {
    width: 100px; /* Adjustable size */
    border: 2px solid white;
    padding: 3px;
    transition: transform 0.3s;
}

.small-image:hover {
    transform: scale(1.2); /* Adjust the scale factor as needed */
}

}

.text-container {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    width: 80%; /* Adjust the width as needed */
}

.enlarge-text {
    font-size: 1.2em; /* Initial size, adjustable */
    transition: font-size 0.3s;
}

.enlarge-text:hover {
    font-size: 1.5em; /* Adjust the scale factor as needed */
}

.link-button {
    background-color: #C4B1A0;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #A09283; /* Adjust the hover color as needed */
}