* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

form > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

form > div > label {
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"] {
  width: 200px;
  height: 40px;
  padding: 10px;
}

input[type="color"] {
  width: 50px;
  height: 50px;
}

#icon {
  padding: 50px;
  margin-top: 30px;
}

#icon i {
  font-size: 100px;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}

.buttons #build {
  width: 75%;
  height: 40px;
  border: 0;
  background: #3a853d;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.buttons #reset {
  width: 20%;
  height: 40px;
  border: 0;
  background: #3a853d;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
