I want to achieve a similar glass effect as shown in this screenshot here: (), but despite trying to adjust the opacity, I can't seem to get it right. Here's my code:
.Head {
position: absolute;
top:200px;
margin-left: 20%;
color:white;
background-color: #2acec3;
margin-left: 8%;
font-size: 400%;
font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
opacity: 0.7;
display: block;
}
.ParaPlanes {
position: absolute;
top:220px;
margin-left: 20%;
color:white;
background-color: #2acec3;
margin-left: 8%;
font-size: 400%;
font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
opacity: 0.7;
display: block;
}
This is what I ended up with: http://prntscr.com/f58njn
Appreciate any help! :-)