* {
  margin: 0;
}

body {
  overflow: hidden;
  background-color: var(--white);
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Alaska;
}

.rombus {
  background-color: var(--red);
  width: 160px;
  height: 200px;
  transform: skew(-25deg);
  margin: 0 0 0 20px;
  min-width: 160px;
}

.font {
  font-size: 12rem;
  letter-spacing: -0.4rem;
  font-weight: 700;
  animation: text-animation 2s infinite alternate;
}

@keyframes text-animation {
  from {
    font-variation-settings: "wdth" 50, "ital" 0, "wght" 700;
  }
  to {
    font-variation-settings: "wdth" 200, "ital" 12, "wght" 300;
    padding-right: 40px;
    letter-spacing: 20px;
  }
}

.cross {
  background: var(--white);
  height: 130px;
  width: 44px;
  position: relative;
  left: 56px;
  top: 34px;
  transform: skew(25deg);
}

.cross:after {
  background: var(--white);
  content: "";
  height: 40px;
  left: -42px;
  position: absolute;
  top: 45px;
  width: 130px;
}
