/*--------------------
  Fonts
--------------------*/
@font-face
{
  font-family: 'Biko';
  font-weight: normal;
  src: url(../fonts/Biko_Regular.otf);
}


  body {
    background-color: #ebe8ef;
    color: #2f2f2f;
    font-family: 'Biko';
  }

  .card {
    width: 50%;
    margin: auto;
    padding: 20px;
    text-align: center;
    background-color: white;
    border-radius : 20px;
    box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.3);
  }

  .container {
    width: 80%;
    height: 80%;
    margin: auto;
    margin-bottom: 20px;
  }

  .container > img {
    /*border : 1px solid grey;*/
    box-shadow: -1px 1px 5px 1px rgba(0, 0, 0, 0.3);
  }

  #photo {
  	width: 100%;
  	height: 100%;
  }

  #shareBtn {
    font-size: 30px;
    border-radius: 30px;
    padding: 10px 20px;
  }

  .fa {
    box-shadow: -1px 1px 5px 1px rgba(0, 0, 0, 0.3);
    padding: 20px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    transition: 0.5s;
  }

  .fa:hover {
      opacity: 0.8;
      transform: scale3d(1.05,1.05,1.05);
  }

  .fa-facebook {
      background: #3B5998;
      color: white;
  }

  .fa-instagram {
    background: #125688;
    color: white;
  }