body {
    margin: 0;
    font-family: Barlow, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.content {
    max-width: 800px;
    padding: 2rem 1rem;
    border-radius: 10px;
}

h1 {
    font-size: 61.04px;
    line-height: 64px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    max-width: 400px;
    margin: 0 auto 48px auto;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 40px 160px;
    flex-wrap: wrap;
}

.card {
    background: white;
    color: black;
    padding: 26px 50px;
    border-radius: 15px;
    text-decoration: none;
    width: 243.5px;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.card:hover {
    transform: scale(1.05);
}
