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

body {
    background-image: url('images/digi.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: white;
}

.content {
    position: absolute;
    top: 8%;
    left: 40%;
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: bold;
    transform: translate(-50%, -50%);
    text-align: center;
}

.offers {
    position: absolute;
    outline: 10px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    top: 20%;
    left: 10%;
    height: 500px;
    width: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 500px;
    overflow: hidden;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;           
    height: auto; 
    display: block;
    margin: 0 auto; 
    min-width: 0;
    min-height: 0;
}

.location {
    position: absolute;
    top: 88%;
    left: 50%;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: normal;
    transform: translate(-50%, -50%);
    text-align: left;
}

.location h1 {
    margin: 0;
    margin-bottom: 6px;
    font-size: 30px;
    font-weight: bold;
}

.location .line {
    display: block;
    margin: 2px 0;
    line-height: 1.6;
}

    
