
/* Grundinställningar */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.background {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 150px;
}

.linkedin-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

button {
    padding: 15px 30px;
    font-size: 1em;
    color: #007BBD;
    background: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #f0f0f0;
}
