html {
  margin: 0;
  padding: 0;
  background: linear-gradient(
    146deg,
    rgba(18, 118, 228, 1) 0%,
    rgba(26, 200, 67, 1) 100%
  );
  min-height: 100%;
  overflow: hidden;
}

body {
  background: rgba(0, 0, 0, 0);
}

.logo img {
  width: 70px;
  margin: 0.2em;
}

.logo-text {
  font-weight: 700;
}

.card {
  margin-top: 2em;
  border-radius: 15px;
  border: none;
}

.card-p {
  font-weight: 700;
}

.buttons {
  display: flex;
  flex-direction: column;
}

.buttons .btn {
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.75);
  transition: 0.5s;
  display: flex;
  align-items: center;
  border: none;
}

.buttons .btn:hover {
    transition: 0.5s;
    background-color: black;
    color: white;
}

.btn img {
    width: 35px;
    height: 35px;
    border-radius: 20px;
}

.btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 1em;
    line-height: 1.2em;
    justify-content: center;
}

.btn div span:nth-child(2) {
    font-size: 0.8em;
}

.card-end {
    margin: 0;
    font-weight: 200;
    line-height: 1.2em;
}

footer {
    margin-top: 1em;
    font-size: 0.8em;
    font-weight: 400;
}