

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Gruppo&family=Rajdhani&display=swap');


html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Amatic SC', cursive;
  background-color: lightslategray;
}

#number {
  width: 200px;
}

img {
  opacity: 0.4;
}

.grid-container {
  display: grid;
  
}

#wrapper {
  min-height: 100%;
  position: relative;
}

.header {
  background: #752a09;
  padding: 10px;
}

body {
  padding: 10px;
  padding-bottom: 60px; /* Height of the footer */
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 40px; /* Height of the footer */
  text-align: center;
}

#createSquareButton  {
  padding: 5px;
  width: 150px;
  margin: 1px;
  }

  /*flex-item*/
.squareBox {
  flex-grow: 1;
  flex-shrink: 1;
  padding:16px 16px;
  border: 1px solid black;
  background-color: lightgray;

}

.squareBox:hover {
  background-color: transparent;
  box-shadow: inset 0px 0px 20px black;
  
}

.container {
  display: flex;
  text-align: center;
  justify-content: center;
  justify-items: center;
  font-family: 'Gruppo', cursive;
  font-weight: bold;
  font-size: 20px;
  padding: 50px;
}


h1 {
  text-align: center;
  font-size: 50px;
}

.line {
  margin:20px;
  border-bottom: 2px solid black;
  margin-bottom: 20px;
  /*box-shadow: 0px 5px 5px 0px ;*/
}


/*flex-container*/

.monitor {
  
  
  display: grid;
  /* grid-template-columns: auto auto auto auto;
  grid-template-rows: auto auto auto auto; */
  flex-wrap: wrap; /* Standardwert = nowrap */
  background-color: #5e230775;
  box-shadow: inset 0px 0px 50px #1e0b02;
  border-radius: 15px;
 

 
}

.hero-image {
  background-image: url("art2.jpg");
  background-color: #cccccc;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 15px;
}


.sideButton{
 
  box-shadow: inset 0px 0px 50px #1e0b02;
  border-radius: 15px;
  writing-mode: vertical-lr;
  padding:10px;
  font-size: 30px;
  font-family: 'Amatic SC', cursive;
  
}

.sideLayer{
 
  box-shadow: inset 0px 0px 50px #1e0b02;
  border-radius: 15px;
  writing-mode: vertical-lr;
  padding:30px;
  font-size: 30px;
  font-family: 'Amatic SC', cursive;
  
}

.hero-block {
  display:flex;
  background-color: #cccccc;

  border-radius: 15px;
  text-align: center;
  justify-content: center;
  justify-items: center;
  margin-top:25px;
  margin-bottom:25px;
  
}

.container-block {
  display: flex;
  text-align: center;
  justify-content: center;
  justify-items: center;
  font-family: 'Gruppo', cursive;
  font-weight: bold;
  font-size: 20px;
  padding: 20px;
}


#blueButton{
  background-color:blue;
  
}

#blackButton{
  background-color:black;
  
}

#greenButton{
  background-color:limegreen;
}

#redButton{
  background-color:crimson;
}


#rainbowButton{
  
    background-image: linear-gradient(to left, purple, indigo, blue, limegreen, yellow, orange, red);
  
}

.circle{
  margin:5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid black;

}

.circle:hover{
  box-shadow: inset 0px 0px 5px 0px black;
}

.block{
  margin:5px;
  width: 100px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid black;

}

.block:hover{
  box-shadow: inset 0px 0px 5px 0px black;
}

.blockSmall{
  margin:5px;
  width: 70px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid black;

}

.blockSmall:hover{
  box-shadow: inset 0px 0px 5px 0px black;
}

button{
  cursor:pointer;
}