body {
    margin: 0px;
     height: 100vh;
     width: 100%;
     background-image: url("multi043.jpg");
     background-repeat: repeat; background-size: auto;
}

.glowing-box {
    width: auto;
    height: auto;
    color: #000a75;
    font-family: "times new roman";
    text-align: center;
    background-color: #ffffff; 
    border-radius: 10px;   
    box-shadow: 0 0 20px 10px #fff;
    transition: box-shadow 0.3s ease-in-out;


}


./glowing-box:hover {
    box-shadow: 0 0 40px 15px #d9e4ff;
    background-color: #d9e4ff;
}
