@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

*{
  box-sizing: border-box;
}

body{
  background-color: dodgerblue;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat";
  color : #fff;
}

h1{
  font-weight: bolder;
  font-size: 50px ;
  margin: 10px 0 0;
}

h2{
  font-weight: 400;
  margin: 10px 0; 
}

.text{
  text-align: center;
  font-weight: 400;
  margin: 10px 0;
}


.cup {
  background-color: #fff;
  border: 4px solid darkblue;
  color: darkblue;
  border-radius: 0 0 40px 40px;
  height: 330px;
  width: 150px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cup.small-cup{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 95px;
  width : 50px;
  cursor: pointer;
  text-align: center;
  margin: 5px;
  transition: 0.3s ease;
}

.cup.small-cup.full{
  background-color: darkblue;
  color: white;
}

.cups{
  height : 280px;
  width: 280px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 30px;
}

.remained {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  transition: 0.3s ease;
}

.remained span{
  font-size: 20px;
  font-weight: bold;
}

.remained small{
  font-size: 12px;
}

.percentage {
  background-color: darkblue;
  color : white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  height: 0;
  transition: 0.3s ease;
}

.quote {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color : white;
  background-color: black;
  border: 8px solid dodgerblue;
  border-radius: 15px;
  padding: 20px;
  margin: 30px;
}