body {
	background: linear-gradient(135deg, #727d75 0%, #5a6660 50%, #4a5449 100%);
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

.urlList {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	display: block;
	color: #fff;
	font-size: 100px;
	background: transparent;
	text-transform: uppercase;
    letter-spacing: .2em;
	margin: 0;
    padding: 0;
    line-height: 1.3em;
	list-style-type: none;
	text-align: left;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .urlList {
        font-size: 24px;
        letter-spacing: .1em;
        line-height: 1.4em;
    }
    
    .urlList li {
        margin: 8px 0;
        padding: 6px 0;
    }
    
    .responsive-wrapper {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .urlList {
        font-size: 20px;
        letter-spacing: .05em;
    }
    
    .urlList li {
        margin: 6px 0;
        padding: 4px 0;
    }
    
    .responsive-wrapper {
        padding: 15px;
    }
}

.urlList ul {
    list-style-type: none;
    padding: 5px;
    margin: 5px;
}

.urlList a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.urlList a:focus {
    outline: 2px solid #5fb3ba;
    outline-offset: 3px;
    color: #5fb3ba;
}

.urlList a:hover {
    color: #5fb3ba;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(95, 179, 186, 0.3);
}

.urlList li {
    transition: all 0.3s ease;
    margin: 10px 0;
    padding: 8px 0;
}

.urlList li:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(95, 179, 186, 0.8);
}

.slideshow-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.slides {
    display: block; /* Always show slides for crossfade */
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0; /* Start with fully transparent */
    transition: opacity 1.5s ease-in-out;
}

.slides.active {
    opacity: 1; /* Fully visible */
}

.slides img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensures the image covers the container without stretching */
}

.responsive-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 40px;
}

