#dp {
    width: 10em;
    height: 10em;
    object-fit: cover;
    border-radius: 50%;
    border-color: #F7B11A;
    border-width: 3.5px;
}

@import 'https://fonts.googleapis.com/css?family=Open+Sans|Roboto:300';
* {
  box-sizing: border-box;
}

body {
  background: #000000;
  overflow-x: hidden;
}


#arrow-icon {
    animation: blinker 1.5s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: .30;
    }
  }

.container {
  perspective: 800px;
  /* Styling */
  color: #fff;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 4px;
  /* Center it */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: auto;
}

.card {
  /* Styling */
  width: 700px;
  height: 400px;
  background: #141414;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  /* Card flipping effects */
  transform-style: preserve-3d;
  transition: 0.6s;
  cursor: pointer;
}

.side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* Fix Chrome rendering bug */
  transform: rotate(0deg) translateZ(1px);
}

/* Flip the card on hover */
.rotate180 {
  transform: rotateY(-180deg) translateZ(1px);
}

.back {
  transform: rotateY(-180deg) translateZ(1px);
}

/* Front styling */
.front {
  /* Center the name + outline (almost) */
  line-height: 390px;
  /* Height - some (because visual center is a little higher than actual center) */
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  padding: 5em;
}

.logo {
  outline: 1px solid #3A8CD7;
  display: inline-block;
  padding: 15px 40px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 1.4em;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 8px;
}

/* Back styling */
.back {
  background: #3A8CD7;
  padding: 30px;
}

.name {
  color: #3B3B3B;
  margin-bottom: 0;
}

p {
  margin: 0.8em 0;
}

.info {
  position: absolute;
  font-size: 1.1em;
  bottom: 30px;
  left: 30px;
  color: #3b3b3b;
}

#bottom-bar {
    color: white;
    background-color: white;
    height: 5em;
    position: relative;
}

#bottom-bar__logo {
    margin-top: 5px;
    height: 3em;
}

.property {
  color: #fff;
}

/* Make semi-responsive */
@media (max-width: 700px) {
  .card {
    transform: scale(0.5);
  }

  .rotate180 {
    transform: scale(0.5) rotateY(-180deg) translateZ(1px);
  }
}