* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
  min-height: 100vh;
  width: 100%;
  font-family: 'Noto Sans', sans-serif;
  color: #252525;
  background-color: #706993;
  /* background-image:
  radial-gradient(
      #84bc45, #81C784
    ) */
  background-image:
  radial-gradient(
      #A0C1B9, #70A0AF, #706993
    )
}

hr{
  overflow: visible;
  padding: 0;
  border: none;
  border-top: 3px solid #706993;
  color: #706993;
  text-align: center;
  margin:8px;
  width:auto;
}

h2{
  font-family: 'Pacifico', cursive;
  font-size: 2.5em;
  font-weight: normal;
  margin-bottom: 14px;
}
p{
  font-size: 14px;
}

.red{
  color:#FF3355;
}

.black{
    color:#252525;
}

.text-shadow {
  text-shadow:
    -2px -2px white,
    -2px 2px white,
    2px -2px white,
    2px 2px white;
}

.underline {
  background-size: 3px 1em;
  box-shadow: inset 0 0.1em white, inset 0 -0.1em #706993;
  display: inline;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem 2rem;
    flex-direction: column;
}

.copy{
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

.copy p {
  padding-bottom: 2px;
}

.details{
  width: 320px;
}

.details--line {
  display: inline-flex;
}

.icon--justathought{
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 4px;
}

.avatar{
  background-image: url("https://avatars2.githubusercontent.com/u/1063717?s=460&v=4");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  top: 30px;
  position: relative;
  border: 3px solid #706993;
  z-index: 1;
}
.card{
  border-radius: 8px;
  padding: 18px 0 0;
  text-align: center;
    background: #fff;
    filter: drop-shadow(0 1px 5px rgba(37,37,37,0.3));
    display: flex;
    flex-direction: column;
  }


  .icons{
    margin:36px 0 0;
    flex-direction: row;
    background-color: #706993;
        border-radius: 0 0 8px 8px;
          padding: 8px 0;
  }
  .icons .btn{
    transition: all .1s ease-in;
    padding:8px;
  }
  .icons a{
    text-transform: none;
    text-decoration: none;
    color: #FFFFFF;
  }
  .icons .btn:hover{
    color:#E1DBFF;
  }

.footer{
  position: absolute;
  bottom: 1em;
  color:rgba(250,250,250,.9);
  font-size: 12px;
}
.buttons{
  font-size: 14px;
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.button {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 50px;
  /* background-color: #706993;
    border: 2px solid #01172F;
    color: #FFFFFF; */
  background-color: white;
    border: 2px solid #706993;
    color: #252525;

  text-decoration: none;
  font-weight: bold;
  text-align: center;
  /* transition: border 0.3s ease; */
  transition: background 0.3s ease;
  /* transition: color 0.3s ease; */
  font-size: 14px;
  margin: 0 6px;
  filter: drop-shadow(0 1px 5px rgba(37, 37, 37, 0.3));
}

.button:hover {
background-color: #E1DBFF;
  /* border: 2px solid #01172F; */
  /* color: #FFFFFF; */
}

.button:active {
background-color: #706993;
  border: 2px solid #01172F;
  /* color: #FFFFFF; */
}