* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f6f4;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* Ydre boks */
.wrapper {
    background-color: #ffffff;
    width: 100%;
    max-width: 900px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Indre indhold */
.container {
    padding: 50px 30px;
    text-align: center;
}

/* Logo */
.logo img {
    max-width: 280px;
    margin-bottom: 30px;
}

/* Overskrift */
h1 {
    font-size: 2.6em;
    margin-bottom: 25px;
    color: #1b1b1b;
}

/* Tekst */
p {
    font-size: 1.2em;
    color: #1b1b1b;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Kontakt */
.contact-info i {
    margin-right: 8px;
}

.contact-info a {
    color: #1b1b1b;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #4a7c59;
}

/* Under construction tekst */
.notice {
    margin-top: 40px;
    font-style: italic;
    color: #555;
}

/* Mobil */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .logo img {
        max-width: 220px;
    }
}
