body {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  color: #000000;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
input,
button,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: "Poppins", sans-serif;
}
img {
  max-width: 100%;
  display: block;
}

.background {
  position: absolute;
  top: 0px;
  max-height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.background img {
  object-fit: cover;
  min-height: 100vh;
  min-width: 100vw;
}
.wrapper {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.688);
}
.inner {
  width: 220px;
}
.inner h1 {
  color: #ffffff;
  font-size: 3.1rem;
  line-height: 44px;
  margin: 0px 0px 25px 0px;
  text-align: center;
  margin-bottom: 3rem;
  height: 15px;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

.inner h2 {
  color: #ffffff;
  font-size: 15px;
  line-height: 44px;
  margin: 0px 0px 25px 0px;
  text-align: center;
  height: 15px;
}
.inner div {
  color: #ffffff;
  font-size: 20px;
}
.inner div span {
  font-weight: 700;
  width: 100px;
  display: inline-block;
}
.inner a {
  color: #ffffff;
}
.inner .audio {
  color: #ffffff;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  font-size: 14px;
  padding: 8px 0px;
  cursor: pointer;
}
.column {
  padding: 0rem 1rem;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

img {
  height: 2rem;
  margin-bottom: 0.45rem;
  filter: drop-shadow(0px 0px 5px #2c2c2c);
}

img:hover {
  filter: drop-shadow(0px 0px 2px #ffffff);
  transition: 0.6s ease-out;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #e94545;
}

.hover-underline-animation::after {
  content: "";

  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  margin-top: 1rem;
  background-color: #e94545;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
