.img-container {
    position: relative;
}

#myimage {
    width: 400px;
    height: auto;
    object-fit: cover;
}

.zoomed {
    position: absolute;
    transform: scale(2);
    transition: transform .5s ease-in-out;
}

.resized {
    width: 50%;
    height: auto;
    transition: width .5s ease-in-out;
}

#circle {
    width: 100px;
    height: 100px;
    border: 1px solid red;
    border-radius: 50%;
    position: fixed;
    top: 20px; /* adjust as needed */
    left: 20px; /* adjust as needed */
    overflow: hidden;
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

#circle img {
    width: 300%;
    height: 300%;
    position: absolute;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header, nav, main, footer {
    padding: 20px;
}

.img-container {
    width: 100%;
    text-align: center;
}

.img-container img {
    max-width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}