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

/* background-color: rgb(73, 99, 75);*/

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Amatic SC', cursive;
  background-color: rgb(119, 153, 122);
}

.navbarIcon{
  display:block;
  font-size: 30px;
  margin-left:30px;
  cursor: pointer;
}

.grid-container {
  display: flex;
  flex-wrap: wrap; /* Standardwert = nowrap */
}

#window, #hiddenWindow{
  display:none;
}


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

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


.container {
  display: flex;
  text-align: center;
  justify-content: center;
  justify-items: center;
  font-family: 'Gruppo', cursive;
  font-weight: bold;
  font-size: 20px;
  padding: 25px;
  background-color: #c7c7c7;
  border-radius: 15px;
  margin: 15px;
}


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


.deleteButton{
  position: relative;
  margin-top: 5px;
  padding: 2px;
  color: white;
  background-color:black;
  border: 1px solid white;
  border-radius: 5px;
}

.deleteButton:hover{
 
  transition: 1s;
  background-color:crimson;
  
}



/*flex-container*/



.monitor {
  display: grid;
  flex-wrap: wrap;
  background-color: #b4b4b400;
  box-shadow: inset 0px 0px 50px #868686;
  border-radius: 15px;
  padding:20px;
 
}

 .card {
  
  display: block;
  background-color: rgb(145, 172, 190);
  border-radius: 15px;
  padding:30px;
  border: 1px solid black;
  margin: 5px;
  width: 100px;
  height: 140px;
  box-shadow: 3px 5px 2px 0px black;
  font-size: 15px;
  
}

.card:hover {
  
  display: block;
  background-color: black;
  color:white;
  /*box-shadow: inset 0px 0px 50px #868686;*/
  border-radius: 15px;
  padding:30px;
  border: 1px solid black;
  margin: 5px;
  box-shadow: 0px 0px 0px 0px black;
  cursor:pointer;
}

.card:active {
  
  display: block;
  background-color: black;
  color:white;
  /*box-shadow: inset 0px 0px 50px #868686;*/
  border-radius: 15px;
  padding:30px;
  border: 1px solid black;
  margin: 5px;
  box-shadow: 0px 0px 0px 0px black;
  cursor:pointer;
}


.inputBox{

  padding:10px;
}

.label{
  
  text-align: left;
 
}

.input{
  min-width: 70px;

}

.input:focus{
  background-color: lightblue;
  
}

.addButton{
  padding:20px;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 2px 2px 1px 0px black;
}

.addButton:hover{
  transition: 0.5s;
  background-color: #77c96f;
  cursor: pointer;
  box-shadow: 1px 1px 0px 0px black;
  
}

.squareBox{
  flex-grow: 1;
  flex-shrink: 1;
  padding:40px 40px;
  background-color: rgb(134, 134, 134);
  border: 1px solid black;
  margin:1px;
}

.squareWhite{
  background-color:white;
  margin:5px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid black;

}

.squareBlack{
  background-color:black;
  margin:5px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid black;

}
