/* Grundläggande återställning */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background-color: rgba(255, 255, 255, 0.95);
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Bakgrundsbild */
.background-overlay {
    background-color: #d7ccda;
    background-image: url('background.png'); /* Byt ut med din sparade bild */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Den vita informationsrutan */
.info-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    text-align: center;
}

.info-box h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
