@font-face {
  font-family: "Arimo";
  src: url("./Arimo-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-style: italic;
  background: #000;
  min-height: calc(100dvh - 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 50px;
  margin-bottom: 40px;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

h1,
.logo-text,
.instructions,
input,
.download-btn,
.disclaimer {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-variant-ligatures: normal;
}

h1,
.logo-text,
.instructions,
input,
.download-btn span,
.disclaimer {
  transform: skewX(-5deg) scaleX(0.9) scaleY(2);
  transform-origin: center;
}

.logo-output,
.download-btn {
  border: 2px solid #fff;
}

h1 {
  margin-bottom: 50px;
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #fff;
}

.input-container {
  margin-bottom: 20px;
}

.input-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  display: inline-block;
}

input {
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.9px;
  background: #000;
  color: #fff;
  outline: none;
  border: none;
  text-align: center;
}

input:focus {
  background: #000;
}

input::placeholder {
  text-transform: uppercase;
  color: #fff;
  opacity: 0.5;
}

.logo-output {
  background: #000;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-text {
  font-size: 72px;
  letter-spacing: 3.6px;
  color: #fff;
  user-select: none;
  padding: 30px;
  white-space: nowrap;
}

.download-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
}

.download-btn {
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #fff;
  flex-grow: 1;
  background: #000;
  cursor: pointer;
}

.download-btn span {
  padding: 12px 24px;
  display: inline-block;
}

.download-btn:hover {
  background: #fff;
  color: #000;
}

.download-btn:active {
  background: #000;
  color: #fff;
}

.instructions {
  margin-top: 30px;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #fff;
}

.instructions p {
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #fff;
  margin-top: 40px;
  text-align: center;
}