* { box-sizing: border-box; }

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #333; 
    overflow: hidden; 
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    display: block;
}
.text-overlay { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    text-align: center;
    color: white;
    background-color: rgba(131, 128, 128, 0.5);
    backdrop-filter: blur(1px); 
    
    padding: 40px;
    border-radius: 20px;
    width: 90%; 
    max-width: 500px; 
    
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    line-height: 1.4;
}

.btn-action {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold; 
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-action:hover {
    transform: scale(1.05); 
    background-color: #f0c14b; 
}

.btn-action:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    p { font-size: 1rem; }
    .text-overlay { padding: 30px 20px; }
    .btn-action { width: 100%; padding: 15px; }
}
.container picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}