/* Generel styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(-45deg, #d1e7f8, #a8cbee, #d1e7f8, #a8cbee, #e3f2fd);
    background-size: 400% 400%;
    animation: gradientMove 4s ease infinite;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Top-boksen */
.container {
    width: 95%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px; /* Afstand til bunden */
}

/* Logo */
.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

/* Header tekst */
h1 {
    font-size: 2em;
    margin: 10px 0;
}

p {
    font-size: 1em;
    color: #555;
}

/* Knapper i top-boksen */
.links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #00b0eb;
    border-radius: 10px;
    font-size: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: #008bb3;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn.help {
    background-color: #00b0eb;
}

/* Wrapper for bunden */
.boks-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%; /* Matcher top-boksen */
    max-width: 700px; /* Maks bredde */
    margin: 0 auto; /* Centrer wrapperen */
}

/* Boks-stil i bunden */
.boks-knap {
    flex: 1; /* Gør boksene lige store */
    padding: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    font-size: 1em;
    color: #0077b5;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.boks-knap:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* LinkedIn logo */
.boks-knap img.linkedin-logo {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Mobilvenlighed */
@media (max-width: 768px) {
    .boks-wrapper {
        flex-direction: column; /* Stak boksene lodret */
        gap: 15px; /* Reducer afstand mellem boksene */
        width: 95%; /* Reducér bredden for små skærme */
    }

    .boks-knap {
        max-width: 100%; /* Sørg for at boksene fylder hele bredden */
    }

    .btn {
        font-size: 0.9em; /* Mindre knapper */
        padding: 10px 15px;
    }

    h1 {
        font-size: 1.5em; /* Mindre overskrift */
    }
}
