:root {
  --primary-green: rgb(14, 136, 79); /* JophNex green */
  --text-white: #ffffff;
  --text-shadow: rgba(0, 0, 0, 0.28);
}
* {
  margin: 0;
}
body {
  height: 100vh;
  font-family: 'Manrope', sans-serif;
  font-size: 1em;
  background-color: #050705;
  color: #ffffff;
  background-image: url(images/servers.png);
   background-repeat: no-repeat;
   background-size: cover;
}
h1{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 4.9em;
  font-weight: bolder;
  padding: 40px 80px;
  font-family: 'Montserrat', sans-serif;
  background-image: url(images/andras.jpg);
  background-size: cover; 
  background-position: center;
  border-bottom: solid 5px white;
  z-index: 999;
}
.center-area {
  margin-top: 160px;
  height: calc(100vh - 160px); /* adjust if your header height changes */
  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering */
  background-size: cover;
  background-position: center;
}
.foot{
  font-size: 4.0em;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-align: center; 
  padding: 30px;
}
.foot em{
  font-size: 0.8em;
  font-style: normal;
}