body {
  margin: 0;
  padding: 0;
}

.full-screen-background {
  background-image: url("techbg.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-links {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.text-links a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.text-links a:hover {
  background-color: #444;
}

.content-container {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: absolute;
  top: 5%; 
  left: 10%;
/*  transform: translateY(-50% + 5%); */
  width: 80%;
  min-height: 0;
  padding: 20px;
}
/* 
.content-container {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: relative;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -95%);
  width: 80%;
  height: calc(100vh - -95%);
  padding: 20px;
}
*/