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

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background: url("images/pulkkilanharju.jpg") center center / cover no-repeat;
    color: white;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 700px;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.25);
    padding: 40px;
    border-radius: 16px;
}

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

p {
    font-size: 22px;
    line-height: 1.5;
}
