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

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    position: relative;
    width: 300px;
    height: 300px;
}

.box {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 150, 0, 0.7);
    z-index: 1;  /* Alustavasti boksi on päällä */
    transition: opacity 0.3s ease;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;  /* Kuva on taustalla */
    opacity: 0;   /* Piilotetaan kuva aluksi */
    transition: opacity 0.3s ease;
}

.container:hover .box {
    opacity: 0;  /* Piilota boksi hoverilla */
}

.container:hover .image {
    opacity: 1;  /* Näytä kuva hoverilla */
}