a:focus, a:hover {
  color: rgb(53,79,94) !important;
}

body {
  cursor: default;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  color: rgb(255,255,255);
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: rgb(255,255,255,0.7);
  background-color: #007BFF;
  border: none;
  border-radius: 6px;
  transform-origin: left;
  background-image: linear-gradient(45deg, rgb(55,55,80), rgb(40,40,40));
  box-shadow: 0 6px 5px rgb(0,0,0,0);
  transition: 0.3s;
}

.btn-primary:hover {
  background-image: linear-gradient(45deg, rgb(60,65,95), rgb(55,55,80));
  box-shadow: 0 6px 5px rgb(0,0,0,0.25);
  transform: translateY(-2px) scale(1.025);
  color: rgb(255,255,255) !important;
}

.btn-primary:active {
  background-image: linear-gradient(45deg, rgb(60,65,95), rgb(55,55,80));
  box-shadow: 0 6px 5px rgb(0,0,0,0.25);
  transform: translateY(-2px) scale(1.025);
  color: rgb(255,255,255) !important;
}

.btn-primary:focus {
  color: rgb(255,255,255) !important;
}

.special-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: rgb(255,255,255,0.7);
  background-color: #007BFF;
  border: none;
  border-radius: 6px;
  transform-origin: left;
  background-image: linear-gradient(45deg, rgb(55,55,80), rgb(40,40,40));
  box-shadow: 0 6px 5px rgb(0,0,0,0);
  transition: 0.3s;
}

.special-btn:hover {
  background-image: linear-gradient(45deg, rgb(60,65,95), rgb(55,55,80));
  box-shadow: 0 6px 5px rgb(0,0,0,0.25);
  transform: translateY(-2px) scale(1.025);
  color: rgb(255,255,255) !important;
}

.special-btn:active {
  background-image: linear-gradient(45deg, rgb(60,65,95), rgb(55,55,80));
  box-shadow: 0 6px 5px rgb(0,0,0,0.25);
  transform: translateY(-2px) scale(1.025);
  color: rgb(255,255,255) !important;
}

.special-btn:focus {
  color: rgb(255,255,255) !important;
}

.social-icons > li {
  transition: 0.3s;
  cursor: pointer;
}

.social-icons > li:hover {
  transform: scale(1.2) rotateZ(360deg);
}

blockquote {
  border-left: 0px solid rgb(180,180,180);
  margin: 1.5em 0px;
  padding: 0.8em 10px;
  padding-bottom: 0.3em;
  padding-top: 1.2em;
  position: relative;
  font-style: italic;
  background-color: rgb(190,190,190);
  background-image: linear-gradient(12.5deg, rgb(120,65,95), rgb(95,54,139));
  background: linear-gradient(25deg, #FC466B 0%, #3F5EFB 100%);
  font-size: 1.1em;
  border-radius: 8px;
  color: rgb(255,255,255,0.8);
}

blockquote::before {
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  color: rgb(255,255,255,0.25);
}

blockquote::after {
  content: close-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-left: 0.25em;
  vertical-align: -0.5em;
  color: rgb(255,255,255,0.25);
}

blockquote p {
  display: inline;
}

.messages {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.message {
  border-radius: 20px;
  padding: 8px 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.yours {
  align-items: flex-start;
}

.yours .message {
  margin-right: 25%;
  background-color: #eee;
  position: relative;
}

.yours .message.last:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: -7px;
  height: 20px;
  width: 20px;
  background: #eee;
  border-bottom-right-radius: 15px;
}

.yours .message.last:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -10px;
  width: 10px;
  height: 20px;
  background: white;
  border-bottom-right-radius: 10px;
}

.mine {
  align-items: flex-end;
}

.mine .message {
  color: white;
  margin-left: 25%;
  background: linear-gradient(to bottom, #00D0EA 0%, #0085D1 100%);
  background-attachment: fixed;
  position: relative;
}

.mine .message.last:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: -8px;
  height: 20px;
  width: 20px;
  background: linear-gradient(to bottom, #00D0EA 0%, #0085D1 100%);
  background-attachment: fixed;
  border-bottom-left-radius: 15px;
}

.mine .message.last:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -10px;
  width: 10px;
  height: 20px;
  background: white;
  border-bottom-left-radius: 10px;
}

