body {
    font-family: "IM Fell English", serif;
    background-image: url(./bg.jpg);
    position: relative;
    margin: 0;
    padding: 0;
    height: 100vh;
}


.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;

}

.willkommen {
    text-align: center;
}

.willkommen h2 {
    font-size: 16px;
    margin-bottom: 25px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.link {
    border: solid 2px #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    background-color: #f4f4f4;
    padding: 25px;
    border-radius: 5px;
    width: 90%;
    max-width: 300px;
    transition: background-color 0.3s;
    position: relative;
}

.link:hover {
    background-color: #e0e0e0;
}

.link img {
    position: absolute;
    left: 10px;
}

.link span {
    margin-left: 50px;
    text-align: center;
    width: 100%;
}

.inner {
    padding: 30px;
    background: #f2f2f2b0;
    border-radius: 10px;
    box-shadow: 1px 0px 10px 0px rgba(106,106,106,0.75);
-webkit-box-shadow: 1px 0px 10px 0px rgba(106,106,106,0.75);
-moz-box-shadow: 1px 0px 10px 0px rgba(106,106,106,0.75);
}

.contact {
    text-align: center;
    color: #3e3e3e;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}