.name {
font-size: 100pt;
font-family: 'Times New Roman', Times, serif;
font-weight: bold;
position: absolute;
width: 100pt;
text-align: center;
}

#A {
background-color: blue; 
z-index: 4;
top: 50px;
left: 150px;   
}

#L {
background-color: aqua;
z-index: 3;
top: 70px;
left: 250px;
}

#E {
background-color: aquamarine;
z-index: 2;    
top: 90px;
left: 350px;
}

#X {
background-color: blueviolet;
z-index: 1;    
top: 110px;
left: 450px;
}

body {
    background-image: linear-gradient(to left, rgb(29, 28, 28), rgb(50, 48, 48), rgb(83, 76, 76), rgb(123, 121, 121));
}