@font-face {
    font-family: 'FontsFree-Net-Lulo-Clean-W01-One-Bold';
    src: url('FontsFree-Net-Lulo-Clean-W01-One-Bold.ttf');
}
@font-face {
    font-family: 'DIN-Next-W01-Light';
    src: url('DIN-Next-W01-Light.ttf');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    /* Text styles */
    font-family: 'Lato',sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #212121;
    perspective: 4px; /* The depth */
    overflow-x: hidden;
    overflow-y: scroll;
}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:active {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
header {
    width: 100%;
    min-height: 100vh;
    position: relative;
    transform-style: preserve-3d;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: url('bg1.jpg');
    background-size: cover;
    z-index: 0;
    transform: translateZ(-4px) scale(2);
}
header div {
    position: absolute;
    z-index: 1;
    top: 50%;
    padding: 0 30px;
    font-family: 'Roboto Condensed', sans-serif;
    transform: translateZ(-2px) scale(1.5);
}
header h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #009688;
}
header h2 {
    font-size: 2.2rem;
    font-weight: 300;
}
section{
    width: 100%;
    background: white;
    position: relative;
    z-index: 2;
}
.container {
    margin: auto; /* To center the text horizontally */
    max-width: 1000px; /* Limiting the width for extra large screens */
    padding: 80px 40px;
}
.container h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 3rem;
}
.container p {
    padding-top: 30px;
    line-height: 1.8;
}