body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero-section {
    position: relative;
    height: 100dvh;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    overflow: hidden; /* to contain the pseudo-element */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/hero.jpg') center/cover no-repeat;
    filter: blur(2px);
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1; /* make sure text/content is above the blurred bg */
}

/* Overlay on top of blur */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0.5;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d3d3d3, #ffffff, #bfbfbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

p{
    font-size: 1.2rem;
    margin: 20px 0;
    color: #f0f0f0;
}



