body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    /* Base color */
    background-color: #09090B;
    /* Overlay radial gradient, now with a specific size */
    background-image: radial-gradient(49.55% 45.34% at 50% 0%, rgba(14, 165, 233, 0.50) 0%, rgba(0, 0, 0, 0.00) 97.5%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.svg-container {
    width: 50%; /* Adjust based on your SVG size */
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-container img {
    width: 100%; /* This will make the SVG responsive */
    height: auto; /* Maintain aspect ratio */
}