/* Reset margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.image-container img {
    max-width: 100%;
    Height: 100%;
    border-radius: 100px;
    box-shadow: 0px 0px 0px rgba(255, 215, 0, 0.3);
}
