body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Set the height of the body to full viewport height */
    background-image: url('michalab_trans.svg'); /* Your specific image URL */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15%; /* Adjust this value to control the size of the image */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide any overflowing content */
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,250,255,0) 80%,  rgba(220, 220, 220, 0.2) 100%);
    z-index: -10; /* Move the gradient behind the image */
}