html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-image: url(img/bg.jpeg);
  background-size: cover;
}

#card {
  background-color: #4a4b4eb1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(58, 58, 58, 0.1);
}

#card h1 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}
#card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#card .app-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin-bottom: 20px;
}

#card .app-link-list {
  display: flex;
  flex-direction: column;
  width: 300px;
  align-items: center;
}

.app-link-list > .apple-badge,
.app-link-list > .android-badge {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 13px;
  width: 180px;
}

.app-link-list img {
  object-fit: contain;
  width: 100%;
}

.apple-badge > img {
  margin: 11px;
  margin-bottom: 0;
}
