<style>
html {
background: black url(https://pbs.twimg.com/media/CpBMyoYWYAQRazW.jpg) top center / cover no-repeat;
height: 100%;
font: 1em "SF Pro Display", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
}
body {
display: flex;
height: 100%;
margin: 0;
}
body > section {
flex: 1;
color: white;
display: flex;
flex-direction: column;
padding: 10vmin;
transition: 500ms;
}
body > section:last-of-type {
align-items: flex-end;
}
body > section > h1 {
text-transform: uppercase;
}
body > section > a {
color: inherit;
text-decoration: none;
line-height: 2em;
}
body > section:hover {
box-shadow: 0 0 0 50vmax rgba(0, 0, 0, .5);
z-index: 1;
}
</style>
<body>
<section>
<h1>Женщинам</h1>
<a href="#">Распродажа</a>
<a href="#">Одежда</a>
<a href="#">Верхняя одежда</a>
<a href="#">Обувь</a>
<a href="#">Сумки и украшения</a>
</section>
<section>
<h1>Мужчинам</h1>
<a href="#">Распродажа</a>
<a href="#">Одежда</a>
<a href="#">Верхняя одежда</a>
<a href="#">Обувь</a>
<a href="#">Сумки и украшения</a>
</section>
</body>