body {
    font-family: 'Open Sans', sans-serif;
    background-color: #121212;
    color: #E5E5E7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    color: #E5E5E7;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 10px #E5E5E7;
}

form {
    margin: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    margin-right: 10px;
}

select, button {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    margin-left: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
}

button:hover {
    background-color: #ddd;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.circle-mask {
    width: 300px; /* Adjust size as needed */
    height: 300px; /* Adjust size as needed */
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.circle-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.circle-mask::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none; /* Ensure the gradient overlay does not interfere with interactions */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .image-container {
        padding: 0;
    }

    .circle-mask {
        width: 200px;
        height: 200px;
    }
}
