:root {
  font-size: 100%;
  font-family: 'Antarctica Trial'; 
}

body {
  background-color: rgb(66,133,244);
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
}

h1 {
  color: rgb(255, 255, 255);
  font-size: 3rem;
  line-height: 0.8;
  margin: auto;
  white-space: nowrap; 
  display: inline-block;
}

p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  text-align: center;
  margin: auto;
}


/* Animation */

@keyframes my-super-weight {
  from { font-variation-settings: "wdth" 100, "wght" 1, "ital" 0, "CNTR" 0; }
  to { font-variation-settings: "wdth" 200, "wght" 950, "ital" 0, "CNTR" 0; }
}

@keyframes rotate-scale {
  0% { transform: rotate(0deg) scale(0) translateX(0px); }
  50% { transform: rotate(45deg) scale(0.75) translateX(100px);}
  100% { transform: rotate(-45deg) scale(1.5) translateX(200px) }
}

@keyframes rotate-scale-2 {
  0% { transform: rotate(0deg) scale(1.5) translateX(0); }
  50% { transform: rotate(-45deg) scale(0.75) translateX(100px); }
  100% { transform: rotate(45deg) scale(0) translateX(200px); }
}


.rotated-text {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg) scale(1) translateY(50px) translateX(100px);
}

.rotated-text-2 {
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg) scale(1) translateY(25px) translateX(50px);
}





/* Super Grid */

.wrapper {
  background-color: rgb(66,133,244);
  display: grid;
  grid-template-columns: 1fr;
}

.item1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 Spalten */
  grid-template-rows: repeat(8, 1fr); /* 4 Reihen */
  height: 94vh;
  width: 100%;
}

.item-container {
  display: flex;
  justify-content: center;
  height: 6vh;
  gap: 10rem;
}

.item2, .item3, .item4 {
  position: relative;
  align-content: top;
  justify-self: center;
}

/* Buttons */

.button {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(0, 0, 0);
  background-color: transparent;
  border: none;
}

.button-link {
  text-decoration: none;
  color: inherit;
}

.button-link:hover {
  color: rgb(66, 133, 244);
}