* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ///////////////////NOTE///////////////////// */
/* TO center body elements */
html,
body {
  height: 100%;
}
.main {
  height: 96%;
  width: 100%;
  display: table;
}
.wrapper {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
/* /////////////////////////////////////// */
#text {
  font-size: 165%;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.text-last {
  text-align: end;
  margin-right: 20px;
}

#button {
  /* -------center horizontal-------- */
  position: relative;
  float: none;
  display: table;
  margin: auto;
  /* ------------------------------- */
  width: 140px;
  height: 45px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-top: 20px;
  border: 1px solid rgb(219, 219, 219);
}

/* Animation */
#button:hover {
  background-color: #444;
  box-shadow: 0px 15px 20px rgba(31, 31, 31, 0.4);
  color: #fff;
  transform: translateY(-4px);
}
