body {
    margin: 0;
    padding: 0;
    height: 100vh;

    display: flex;
    flex-direction: column;   
    align-items: center;      

    background-image: url("il_1140xN.4153996521_tehjhj.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    border: 2px solid #ddd;
}


.images-row {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;   
    margin-bottom: 40px;
}


.card {
    background: white;
    border: 2px solid #777;
    border-radius: 12px;

    padding: 15px;
    width: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    flex: 0 0 auto;           
}

.image-block img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.image-description {
    margin-top: 12px;
    font-size: 15px;
    color: black;
    text-align: center;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.button-link {
    display: inline-block;
    padding: 12px 25px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.button-link:hover {
    background: black;
}
