* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: poppins;
  line-height: 1.5;
}

header {
  background-image: linear-gradient(to top left, #39b385, #9be15d);
  color: #383737;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  min-height: 100px;
}
.container {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.contain1 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
}

button {
  width: 150px;
  border-radius: 25px;
  height: 50px;
  margin: 10px 0;
  background-color: #5ec576;
  border: none;
}

.time {
  width: 100%;
  height: auto;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

.buttons_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.sorting_algos {
  width: 200px;
  border-radius: 25px;
  height: 50px;
  background-color: #5ec576;
  border: none;
  text-align: center;
  align-items: center;
}

.contain1 {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box_container {
  display: flex;
  flex-direction: row;
}

.box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background-color: #5ec576;
  margin: 0 10px;
  text-align: center;
  align-items: center;
  color: black;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  justify-content: center;
}

.user {
  width: 100%;
  height: 10vh;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.userArray {
  color: black;
  margin-right: 50px;
  width: 500px;
  height: 42px;
  background: whitesmoke;
  border: none;
  border-radius: 15px;
  padding: 20px;
}



@media only screen and (max-width: 900px) {
.container {
  flex-direction: column;
}

.box {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  margin: 0 5px;
  font-size: 15px;
}
}
