@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 5rem;
    margin: 0;
}

.image-container {
    width: 100%;
    max-width: 640px;
    height: auto;
    max-height: 360px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s;
}

@media (min-width: 1024px) {
    .image-container img {
        cursor: zoom-in;
    }

    .image-container img:active {
        transform: scale(2);
        cursor: zoom-out;
    }
}

.footer {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    .image-container {
        max-width: 480px;
        max-height: 270px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }
    .image-container {
        max-width: 320px;
        max-height: 180px;
    }
}
