body {
  background-color: #31363f;
  color: #eeeeee;
}
main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
#team-container {
  height: 40%;
  width: 90%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.team-card {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 5px;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}
.team-name {
  font-size: 30px;
  margin: 0px;
}
.team-score {
  font-size: 100px;
  margin: 0px;
}
.score-buttons {
  display: flex;
  gap: 55px;
  justify-content: center;
}
.add-card {
  flex-grow: 1;
  border-radius: 5px;
  background-color: #222831;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}
.graph-container {
  max-height: 40%;
  max-width: 90%;
  background-color: #222831;
  border-radius: 5px;
}

input[type="text"] {
  padding: 13px 16px;
  border-radius: 5px;
  border: none;
}
.delete-button {
  position: absolute;
  right: 20px;
  top: 20px;
}
/*  #222831 
    #31363F
    #76ABAE
    #EEEEEE
*/
