:root {
  font-family: Inter, sans-serif;
  -webkit-font-feature-settings: 'liga' 1, 'calt' 1;
          font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

*, :after, :before {
  box-sizing: border-box;
}

img {
  -webkit-user-drag: none;
}

body {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 100vh;
  background: #F5F5F7;
}

.tile {
  opacity: 0;
  width: 478px;
  height: 670px;
  display: flex;
  background: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.replay {
  opacity: 0;
  display: flex;
  padding: 0.5em;
  background: rgb(0 0 0 / 0%);
  border-radius: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 32px;
  top: 32px;
  cursor: pointer;
}

.replay ion-icon {
  font-size: 2em;
  opacity: .5;
}

.replay:hover {
  background: rgb(0 0 0 / 4%);
}

.replay:hover ion-icon {
  opacity: .8;
}

.tile-content {
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 48px 56px;
}

.tile-title {
  font-size: 36px;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
  font-weight: 600;
  line-height: 120%;
}

#encryption {
  opacity: 0;
  height: 44px;
  width: 132px;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 44px;
  font-size: 32px;
  margin: 0 auto;
  -webkit-font-feature-settings: 'zero';
          font-feature-settings: 'zero';
  color: rgb(0 0 0 / 60%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#encryption span {
  display: grid;
  place-items: center;
}


.encrypted {
  color: rgb(0 0 0);
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}

.encrypted + .encrypted {
  padding-left: 2px;
}

.animated-visual {
  display: grid;
  grid-template-areas: "stack";
  place-items: end;
  max-width: 246px;
  margin-inline: auto;
  margin-top: 50px;
}


.animated-visual img {
  display: block;
  max-width: 100%;
  grid-area: stack;
  position: relative;
}
