
html, body {
  margin: 0;
  padding: 0;
  background: rgb(28, 21, 21);
  text-align: center;
  font-family: "Arial Black";
  font-weight: 900;

}


/* Text */
p {
  color: #d3cbcb;
  font-size: 140%;
  text-shadow: 1px 1px 2px #A7A7A7;
  margin: 15px 0;
}

h1 {
  color: #eea27f;
  font-size: 220%;
  text-shadow: 1px 1px 2px #A7A7A7;
  margin: 5px 0;
}

a {
  color: #4EB4D2;
  text-decoration: underline;
  font-size: 130%;
  display: block;
  margin: 5px 0;
}

/* Buttons */
.MainButton {
  width: 80%;
  padding: 10px;
  font-size: 150%;
  text-align: center;
  border: 2px solid #3498db;
  color: #3498db;
  background-color: #ffffff;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin: 5px auto;
  display: block;
}

.MainButton:active{ 
  background-color: #3498db; 
  color: #ffffff; 
  border-color: #ffffff; 
}

/* Layout helpers */
.ButtonsDiv {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.CounterDisplayDiv {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit !important;
  font-weight: inherit !important;
  font-size: inherit;
}
#andreImg {
  height: 12vh; 
}


