:root {
  --blue: #161b46;
  --white: #ffffff;
}

html, body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}

body {
  background: var(--blue);
  color: var(--white);
  line-height: 160%;
  font-weight: 200;
}

a {
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}

img {
  display: inline-block;
}

span {
  display: inline-block;
}

.whatsapp {
  width: 1.1rem;
  height: auto;
  margin-left: 20px;
  margin-right: 15px;
}

.container {
  width: 100vw;
  height: 100vh;
}

.foundme-logo {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 150px;
  max-width: 30%;
}
.foundme-logo a {
  display: block;
}

@keyframes fadeGrow {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transform: scale(0.3, 0.3);
    -ms-transform: scale(0.3, 0.3);
    -webkit-transform: scale(0.3, 0.3);
    transform: scale(0.3, 0.3);
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.container .no-card {
  animation: fadeGrow 1.5s ease-out forwards;
  max-width: 90vw;
}
.container .no-card .foundme-logo {
  position: relative;
  right: inherit;
  bottom: inherit;
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
}
