* {
  margin: 0;
}

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

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

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

.font {
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: -0.4rem;
}

.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;
}
