html, body { 
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body { 
    background: url('/home/per/Documents/Dev/tabor_website/Fotos/IMG01.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/* Social Icons Styles */
.social-icons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Animation for the slideshow images */
@keyframes fadeInBackground {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}

@media screen and (max-width: 1140px) { 
    .cb-slideshow li div h3 { font-size: 140px }
}
@media screen and (max-width: 600px) { 
    .cb-slideshow li div h3 { font-size: 80px }
}