.container {
  margin: 0 auto;
  max-width: 1000px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  min-width: 200px;
  min-height: 30px;
  background: #0003a3;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  transition: all .7s;
  border-radius: 100px;
  padding: 6px 12px;
  margin: 10px;
}

.text {
  margin: 10px;
  display: inline-block;
  font-weight: 500;
  font-size: 30px;
  transition: all .7s;
}

.text img {
  max-width: 50px;
}

.red {
  color: red;
}

.move {
  transform: translateX(10vw);
}