.bodyClass {
  background-color: #0e1f3b;
  /* align content to center */
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  background-color: #0e1f3b;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: min(900px, 100vw);
  height: min(90vh, 1400px);
  border: 1px solid #d9b275;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 32px 16px #d9b27550;
  /* align content to center */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top-left-triangle,
.top-left-triangle-inner,
.bottom-right-triangle,
.bottom-right-triangle-inner {
  position: absolute;
  width: 0;
  height: 0;
}

.logo {
  position: absolute;
  top: 32px;
  right: 32px;
  height: 100px;
  width: 100px;
}

.logoImg {
  width: 100%;
  height: 100%;
}

.top-left-triangle {
  top: 0;
  left: 0;
  border-right: 150px solid transparent;
  border-top: 150px solid white;
}

.top-left-triangle-inner {
  top: 0;
  left: 0;
  border-right: 180px solid transparent;
  border-top: 120px solid #d9b275;
}

.bottom-right-triangle {
  bottom: 0;
  right: 0;
  border-left: 150px solid transparent;
  border-bottom: 150px solid white;
}

.bottom-right-triangle-inner {
  bottom: 0;
  right: 0;
  border-left: 180px solid transparent;
  border-bottom: 120px solid #d9b275;
}

.cardName {
  color: white;
  font-size: 50px;
  padding: 40px 0 10px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Times New Roman", Times, serif;
}

.cardSubtitle {
  font-size: 24px;
  margin: 10px 0 64px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  color: #d9b275;
}

.cardSubtitle::before,
.cardSubtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 15%;
  height: 1px;
  background-color: grey;
}

.cardSubtitle::before {
  left: 0;
  transform: translateX(-120%);
}

.cardSubtitle::after {
  right: 0;
  transform: translateX(120%);
}

.btnContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.actionBtn {
  padding: 10px 20px;
  background-color: #fff;
  color: #0e1f3b;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
  width: 220px;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  /* align vertically */
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.actionText {
  /* align text to center */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.actionHighlightBtn {
  padding: 10px 20px;
  background-color: #d9b275;
  color: #0e1f3b;
  border-radius: 5px;
  cursor: pointer;
  width: 220px;
  text-align: center;
  margin-bottom: 32px;
  /* align vertically */
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.actionHighlightBtn svg {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.actionIcon {
  padding-right: 10px;
  border-right: 1px solid #d9b275;
}

.socialContainer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.socialDiv {
  margin: 0 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid #d9b275;
  border-radius: 50%;
  margin-bottom: 10px;
  /* center content */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.socialItem {
  text-align: center;
}

.socialText {
  text-transform: uppercase;
  font-size: 12px;
}

.socialIcon {
  color: #0e1f3b;
}

/* mobile device style */
@media (max-width: 1000px) {
  .cardName {
    font-size: 72px !important;
    padding: 120px 0 10px;
  }

  .cardSubtitle {
    font-size: 30px;
    margin: 10px 0 32px;
  }

  .btnContainer {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .actionBtn {
    width: 580px;
  }

  .actionHighlightBtn {
    width: 580px;
  }

  .socialContainer {
    margin-top: 120px;
    margin-bottom: 20px;
  }

  .socialDiv {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
  }

  .socialText {
    font-size: 24px;
  }

  .logo {
    position: absolute;
    top: 48px;
    right: 48px;
    height: 150px;
    width: 150px;
  }

  .actionText {
    /* align text to center */
    font-size: 32px;
  }

  .actionHighlightBtn {
    margin-bottom: 64px;
    margin-top: 32px;
  }

  .socialIcon {
    height: 64px;
    width: 64px;
  }
}
