JSFiddle - React, Tailwind, and code Playground

by Artem Pryanishnikov

HTML

<div class="partners">
<div class="poster">
  <div>
  
    <div class="brighten pic"><a href="#openModal">
    <img src="https://www.sberbank.ru/portalserver/content/atom/contentRepository/content?id=40d1bd8f-6032-4b89-8824-c431b2adc2a8" width="400" height="111"  alt="1111">
    </a>
    </div>
   
  </div>
<div id="openModal" class="modalDialog">
	<div>
		<a href="#close" title="Закрыть" class="close">X</a>
		<h2>НАЗВАНИЕ</h2>
    <img src="https://www.sberbank.ru/portalserver/content/atom/contentRepository/content?id=40d1bd8f-6032-4b89-8824-c431b2adc2a8" width="400" height="111"  alt="1111">
		<p>Какая-то информация</p>
    <p>Какая-то информация</p>
    <p>Какая-то информация</p>
    <p>Какая-то информация</p>
    <p>Какая-то информация</p>
    <p>Какая-то информация</p>
    <p>Какая-то информация</p>
</div>
</div>
</div>

CSS

.brighten img {
  -webkit-filter: brightness(15%);
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}

.brighten img:hover {
  -webkit-filter: brightness(100%);
}
.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
	pointer-events: none;
}
.modalDialog:target {
    display: block;
    pointer-events: auto;


}
 
.modalDialog > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }