@font-face {
    font-family: 'din_condensedbold';
    src: url('din_condensed_bold-webfont.woff2') format('woff2'),
    url('din_condensed_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'din_condensedbold', Arial, sans-serif;
    background: url('bg.jpg') center center / cover no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
    min-height: 100vh;
}

.card {
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 2rem 6rem;
}

.logo img {
    max-width: 230px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.title {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.info p {
    margin: 0.4rem 0;
    font-size: 1rem;
}

.info a {
    text-decoration: none;
    color: #333;
}

.socials {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.socials a {
    color: #0073b1; /* LinkedIn Blau als Beispiel */
    text-decoration: none;
}

.socials a:hover {
    text-decoration: underline;
}

/* Responsiv */
@media (max-width: 480px) {
    .card {
        padding: 1.5rem;
    }
    h1 {
        font-size: 1.6rem;
    }
}
