html, body {
  margin: 0;
  padding: 0;
  font-family: "Test Söhne-Kräftig", Helvetica, sans-serif;
  background-color: #c7c9ca;
  overflow: hidden;
}

body {
  padding-top: 120px;
}

canvas {
  display: block;
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.top-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background-color: #e8fd8a;
  height: 60px;
  padding: 0 2rem;
}

.logo {
  width: 40px;
  height: auto;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 5px 10px;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}

.search-box input {
  border: none;
  outline: none;
  flex-grow: 1;
  font-size: 14px;
  color: #c7c9ca;
  background: transparent;
}

.search-icon {
  width: 14px;
  height: 14px;
}

.right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.login-text {
  font-size: 16px;
  color: #252525;
}

.icon {
  height: 22px;
  width: auto;
}

.graphic-row {
  position: absolute;
  top: -19px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2rem;
  box-sizing: border-box;
}

.box {
  position: relative;
  width: 125px;
  height: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.group {
  position: relative;
  width: 125px;
  height: 281px;
  transform: rotate(-90deg);
}

.rectangle, .div, .rectangle-2, .rectangle-3, .rectangle-4 {
  position: absolute;
  background-color: #e8fd8a;
}

.box.left .rectangle { width: 36px; height: 115px; top: 166px; left: 61px; }
.box.left .div { width: 36px; height: 49px; top: 71px; left: 61px; }
.box.left .rectangle-2 { width: 28px; height: 46px; top: 120px; left: 97px; }
.box.left .rectangle-3 { width: 28px; height: 71px; top: 0; left: 97px; }
.box.left .rectangle-4 { width: 61px; height: 46px; top: 120px; left: 0; }

.box.right .rectangle { width: 36px; height: 157px; top: 181px; left: 61px; }
.box.right .div { width: 36px; height: 46px; top: 85px; left: 61px; }
.box.right .rectangle-2 { width: 28px; height: 50px; top: 131px; left: 97px; }
.box.right .rectangle-3 { width: 28px; height: 85px; top: 0; left: 97px; }
.box.right .rectangle-4 { width: 61px; height: 50px; top: 131px; left: 0; }

.roll-btn {
  background-color: #ffffff;
  border: none;
  font-size: 20px;
  font-family: sans-serif;
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: absolute;
  z-index: 50;
}

.roll-btn:hover {
  background-color: #e8fd8a;
}

.movie-info {
  background-color: #f5f5f5;
  padding: 20px 30px;
  font-family: sans-serif;
  line-height: 1.5;
  text-align: center;
  box-shadow: none;
  z-index: 50;
  position: absolute;
}

.movie-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.movie-quote {
  font-size: 16px;
  font-style: italic;
  color: #333;
}
