
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left {
    width: 50%;
    background: url('../images/spanje.jpg') no-repeat center center;
    background-size: cover;
}

.right {
    width: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    max-width: 500px;
    margin-bottom: 2rem;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
}

.button {
    padding: 1rem 2rem;
    background-color: #2E2E2E;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

.button:hover {
    background-color: #444;
}
