* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Libre Baskerville;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}
.container {
    display: flex;
    overflow-x: auto; 
    gap: 20px; 
    padding: 20px;
    height: 100vh; 
    background-color: #eee;
    border-radius: 8px;
}

.column {
    flex: 0 0 500px; 
    height: 100%; 
    background-color: #fff;
    border: 1px solid #ddd;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto; 
    padding: 20px;


}
.column1 {
    flex: 0 0 auto; /* Fixed width for columns */
    height: 100%; /* Full height of the container */
    background-color: #fff;
    border: 1px solid #ddd;
    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Enable vertical scrolling within the column */
    padding: 20px;


}
.column-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    font-family: Libre Baskerville;
}
.column3 {
    flex: 0 0 450px; /* Fixed width for columns */
    height: 100%; /* Full height of the container */
    background-color: #fff;
    border: 1px solid #ddd;
    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Enable vertical scrolling within the column */
    padding: 20px;
justify-content: center;
align-items: center;

}
.column4 {
    flex: 0 0 300px; 
    height: 100%; 
    background-color: #fff;
    border: 1px solid #ddd;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto; 
    padding: 20px;

}
.contact-row {
    display: flex;
    align-items: left;
    gap: 15px;
    margin-bottom: 10px;
}

.container::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}


.column:last-child {
    border-right: none; /* Remove border for the last column */
}


h2 {
    text-align: center;
    margin-bottom: 10px;
    font-family: Libre Baskerville;

    display: flex;
    
    align-items: center;
    
}

p {
    font-family: Libre Baskerville;
    height: 100%;
    width: 100%;
    display: flex;
    
    align-items: center;
    margin-bottom: 15px;
    margin-top: 10px; /* Adds space above the paragraph */
}

h1 {
    
    margin-bottom: 10px;
    color:red;
}
.scrolling-text-wrapper {
    display: flex; /* Allows the text to be on the same line */
    animation: scroll-left 10s linear infinite; /* Continuous scroll effect */
}

.scrolling-text {
    white-space: nowrap; /* Prevents wrapping of text */
    padding-right: 50px; /* Optional: Adds some space between repeated content */
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Start off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* End off-screen to the left */
    }
}


/* Styling for the images */
.hover-img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hover-img:hover {
    transform: scale(1.05);
}

/* Text Container */
.target-text {
  
    
    transition: background-color 0.3s ease;
    font-family: Libre Baskerville;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;

    
}

/* Highlight effect */
.target-text.highlight {
   color: red;

}

/* Spacer to demonstrate scrolling */
.spacer {
    height: 1000px;
}
#counter {
    font-size: 2em;
    color: red;
    font-family: Libre Baskerville;
    justify-content: center;

}


#images {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}

img {
    width:10%;
    height:10%;
}
 
a:link{
    color:blue;
    
}