* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  width: 100vw;
  font-family: "Roboto", serif;
  overflow: hidden;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  place-items: center;
}

.background-container {
  height: 100%;
  width: 100%;
  background-image: url('../img/background.webp');
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.x-container {
 padding: 2vw;
 display: flex;
 justify-content: center;
 align-items: center;
 height: 100vh;
 margin: 0;
 flex-direction: column;
}

.card-container {
  aspect-ratio: 4 / 2;
  padding: max(4vw, 4vh);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(9px);
  color: white;
  text-align: center;
}

.social-media-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 1.5em;
}

.social-icon {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 1.5em;
  color: #fff;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.social-icon:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-icon i {
  vertical-align: middle;
}

.name-container {
  text-align: center;
  padding: 0em;
  margin-bottom: 1em;
}

.name, .title {
  -webkit-text-stroke: 0.5vw rgba(255, 255, 255, 0.1);
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.title {
  font-size: min(2vw, 2vh);
}

.name {
  font-size: min(3vw, 3vh);
}

.copyright-container {
 bottom: 0.5em;
 position: fixed;
 font-size: 1vw;
 color: rgba(255, 255, 255, 0.7);
 text-align: center;
 width: 100%;
}


