* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
}
.text {
  height: 50px;
  color: white;
  font-size: 25px;
  margin: 0;
}

.cont {
  height: 400px;
  padding: 16px;
}

button,
span {
  font-size: 19px;
  margin: 6px;
  background-color: rgb(60, 60, 60);
  color: white;
  height: 55px;
  width: 20%;
  border: none;
  border-radius: 60%;
}

button:hover {
  background-color: rgb(94, 94, 94);
}

.yellow {
  background-color: rgb(255, 137, 0);
}

.yellow:hover {
  background-color: rgb(216, 116, 0);
}

.delete {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .text {
    margin-left: 100px;
  }

  .cont {
    width: 75%;
    margin: auto;
  }

  button,
  span {
    font-size: 22px;
    height: 100px;
  }
}
@media screen and (min-width: 992px) {
  .text {
    margin-left: 500px;
  }

  .cont {
    width: 50%;
  }
  button{
    height: 110px;
  }
}
