Title

Video background round - HTML, CSS

Download for member
Download with donation

To reverse the rounded, change like this:
Per invertire la curva, cambiare così:

border-bottom-left-radius: 90%;

Per curvare entrambi i lati:
To round both the sides:

border-bottom-right-radius: 90%;
border-bottom-left-radius: 90%;

To center the title, change like this:
Per centrare il titolo, cambiare così:

.wrapper h2 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
}