html {
    box-sizing: border-box
}
*, *:before, *:after {
    box-sizing: inherit
}
body {
    background: #141414;
    background-size: cover;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 62.5%;
    margin: 0;
    padding: 0
}
h1 {
    font-size: 4.0em;
    line-height: 4.0rem;
    font-weight: 500;
    margin: 0.6rem;
}
h2 {
    font-size: 2.4em;
    line-height: 2.4rem;
    font-weight: 300;
    margin: 0.6rem;
}
b {
    font-weight: 600
}
p {
    font-size: 1.5em;
    line-height: 1.3rem;
    font-weight: 100;
}
a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}
.underline-hover:hover {
  color: #ffffff;
}
.underline-hover::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.underline-hover:hover::before {
  transform: scaleX(1);
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.centered-content {
    max-width: 560px;
    margin: 2rem auto;
    padding: 0;
    text-align: center;
}
.emoji-icon-container {
    max-width: 480px;
    margin: auto;
    padding: 0.0rem 5rem;
}
.emoji-icon {
    width: 100%;
    border-radius: 50%;
    background: #ddecf7;
    padding: 0%;
}
.btn-white {
    color: #0e0e0e;
    background-color: #ffffff;
    padding: 1rem 2rem;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    font-size: 1rem;
    border-radius: 16px;
}
.btn-white:hover {
    background-color: #dddddd;
    transition: 0.3s;
}