html, body {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 32px;
  font-family:Arial, Helvetica, sans-serif;
}

h2 {
  font-size: 32px;
  font-family:Arial, Helvetica, sans-serif;
  text-wrap: center;
}

p {
  font-size: 18px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: light;
}

a {
  font-size: 18px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: light;
}

.message {
  font-size: 20px;
  line-height: 1.5;
  max-width: 320px;
  margin: 0px;
  text-align: justify;
}

.page-container {
   height: 100vh;
   width: 100vw;
   margin: 0;
}

.background-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.background-video
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;

  z-index: -2;
}

.card {
  min-height: auto;
  padding: 42px 40px;
  border-radius: 25px;
  border-color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #183b35;
  position: absolute;
  top: 50%;
  left: 50%;
  justify-content: center;

  
  transform: translate(-50%, -50%);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.qr-code {
  width: 150px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
  margin: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
}



.personal-info {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  
  background-color: rgba(255, 255, 255, 0.50);
  padding: 5px 12px;
  border-radius: 14px;
  margin-top: 10px;

  color: inherit;
  text-decoration: none;

  transition: 0.3s background-color;
}

.personal-info:hover {
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}


.material-symbols-outlined {
  margin: auto;
  color: #16615a;
  font-size: 24px;
}



@media (max-width: 768px) {
  .card {
    width: 60%;
    padding: 10px 5px;
  }

  h1 {
    font-size: 17px;
  }

  .message {
    max-width: 75%;
    font-size: 12px;
  }

  .qr-code {
    width: 70px;
  }

  .personal-info p {
    font-size: 10px;
  }

  .material-symbols-outlined {
    font-size: 14px;
  }
}