.uber-button {
  height: 36px;
  width: 110px;
  color: white;
  background-color: black;
  border: none;
  margin: 10px;
  font-family: arial;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, border 0.3s;
}

.uber-button:hover {
  box-shadow: 4px 4px 10px gray;
  background-color: rgb(19, 130, 233);
}

.uber-button:active {
  box-shadow: 5px 5px 10px gray;
  border: 2px solid blue;
  background-color: rgb(17, 169, 224);
}

.amazon-button {
  font-weight: 500;
  cursor: pointer;
  width: 150px;
  height: 32px;
  border-radius: 13.5px;
  border: none;
  background-color: rgb(255, 216, 20);
  transition: all 0.25s;
}

.amazon-button:hover {
  width: 155px;
  height: 36px;
  box-shadow: 5px 4px 10px rgba(128, 128, 128, 0.4);
}

.amazon-button:active {
  background-color: rgb(254, 212, 0);
  width: 145px;
  height: 29px;
}

.git-hub-button {
  border: none;
  cursor: pointer;
  height: 35px;
  width: 100px;
  border-radius: 4.5px;
  background-color: rgb(46, 164, 79);
  font-weight: 600;
  color: white;
  transition: all 0.3s;
}

.git-hub-button:hover {
  opacity: 79%;
  height: 38px;
  width: 108px;
}

.git-hub-button:active {
  height: 30px;
  width: 96px;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 3px;
  margin-left: 3px;
  opacity: 100%;
}

.boot-strap-button-1 {
  border: none;
  cursor: pointer;
  height: 35px;
  width: 105px;
  border-radius: 4px;
  background-color: rgb(121, 82, 179);
  font-weight: 600;
  color: white;
  transition: all 0.13s;
  margin-right: 6px;
  transition: all 0.3s;
}

.boot-strap-button-1:hover {
  background-color: rgb(255, 255, 255);
  color: gray;
  border: 1px solid gray;
  height: 38px;
  width: 110px;
}

.boot-strap-button-1:active {
  background-color: rgb(55, 24, 101);
  color: rgb(255, 255, 255);
  border: none;
  height: 30px;
  width: 100px;
}

.boot-strap-button-2 {
  border: 1px solid gray;
  color: gray;
  font-weight: 600;
  cursor: pointer;
  height: 35px;
  width: 105px;
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s;
}

.boot-strap-button-2:hover {
  border: none;
  background-color: rgb(121, 82, 179);
  color: white;
  height: 38px;
  width: 110px;
}

.boot-strap-button-2:active {
  background-color: rgb(99, 99, 100);
  color: rgb(255, 255, 255);
  border: none;
  height: 30px;
  width: 100px;
}

.linkedin-button-1 {
  font-weight: 600;
  background-color: rgb(10, 102, 194);
  border: none;
  color: white;
  height: 36px;
  width: 220px;
  border-radius: 18px;
  transition: all 0.3s;
}

.linkedin-button-1:hover {
    height: 40px;
    width: 226px;
    color: rgb(10, 102, 194);
    border: 1px solid rgb(10, 102, 194);
    background-color: white;
    box-shadow: 5px 4px 8px rgba(128,128,128,0.4);
}

.linkedin-button-1:active {
    background-color: rgb(0, 80, 160);
    border: none;
    color: white;
    height: 30px;
    width: 215px;
}

.linkedin-button-2 {
  font-weight: 600;
  height: 36px;
  width: 80px;
  border-radius: 18px;
  color: rgb(10, 102, 194);
  border: 1px solid rgb(10, 102, 194);
  background-color: white;
  transition: all 0.3s;
}


.linkedin-button-2:hover {
    height: 40px;
    width: 86px;
    color: rgb(255, 255, 255);
    border:none;
    background-color:rgb(10, 102, 194);
    box-shadow: 5px 4px 8px rgba(128,128,128,0.4);
}

.linkedin-button-2:active {
    background-color: rgb(140, 140, 140);
    border: none;
    color: white;
    height: 32px;
    width: 74px;
    box-shadow: none;
}