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

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1rem;
}

/* Fullscreen background image container */
.background-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
    overflow: hidden;
}

/* Slideshow styles */
.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}

.slide.active {
    opacity: 1;
}


/* Logo */
.logo {
    position: absolute;
    top: 20px; 
    left: 20px;
    text-align: left;
}

.logo img {
    max-width: 175px;
    height: auto;
}
/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
    padding-right: 20px;
    background-color: rgba(255, 255, 255, 1); 
}

.footer-text {
    text-align: right;
    flex-grow: 1;
}

.footer-text p {
    margin: 0;
    line-height: 1.2;
}

.footer-logo {
    margin-left: 10px;
}

.footer-logo img {
    height: 30px;
    vertical-align: middle;
}
