<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wrapper {
    position: relative;
    padding: 0;
    margin: 0;
    width:250px;
    display:block;
}
.text {
    position: absolute;
    top: 0;
    color:#000;
    font-weight:bold;
    background-color:rgba(255,255,255,0.8);
    width: 250px;
    height: 250px;
    vertical-align:bottom;
    text-align: center;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
        padding: 0;
    margin: 0;
}
.text2 {
	margin-top:100px;
	margin-left:10px;
	margin-right:10px;
	border: #000 1px solid;
	background-color:#FFF;
}

.text:hover {
    opacity:1;
}
}

img {
    z-index:1;
}</pre></body></html>