body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #878484;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.ftitel {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 45px;
}

.fbeskrivelse {
    color: white;
    text-align: center;
    margin: 0 20px 45px 20px;
    font-size: 25px;
    font-weight: bold;
}

.link-billede {
    display: block;
    height: 55px;
    align-self: center;
    margin: 0 auto;
    max-width: 275px;
}

.links {
    text-align: center;
    margin: 20px auto;
    background-color: #d9d6d6;
    border-radius: 8px;
    padding: 10px 0;
    max-width: 350px;
    font-size: 20px;
    font-weight: bold;
}

.link-box  {
    margin: 15px 0;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: block;
}

main {
    flex: 1;
}

.til-forside {
    display: block;
    margin: 20px auto;
    text-align: center;
    background-color: #d9d6d6;
    border-radius: 12px;
    padding: 15px;
    max-width: 200px;
    font-size: 20px;
    font-weight: bold;
    border: none;
}

.til-forside:hover {
    background-color: #bfbcbc;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    margin-top: auto;
}