body, .card-panel, .card, .modal {
  background-color: #0a192f;
  color: #a8b2d1;
}

h1,h2,h3,h4,h5,h6 {
  color: #ccd6f6;
}

.container {
  max-width: 800px;
}

.header {
  padding: 20px;
  display: flex;
}

.profile_img_cont {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 30px;
}

.profile_img {
  width: 100%;
}

.card-content {
  font-weight: 400;
  min-height: 80px;
  padding-bottom: 10px!important;
}

.card-content, a {
  color: #64ffda;
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image .inner {
  height: 0;
  padding-bottom: 75%;
}

.card-image .img, .card-image iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  transform: scale(1);
  transition: .5s;
}

.card-image:hover .img, .card-image:hover iframe {
  transform: scale(1.03);
}

.modal {
  max-width: 700px;
  max-height: 80%;
}

.modal .modal-x {
  float: right;
  padding: 0 10px 5px 5px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: currentColor;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  transition: opacity .3s;
  cursor: pointer;
}

.modal .modal-x:hover {
  opacity: 1;
}

.modal img {
  width: 80%;
  margin: auto;
  display: block;
}

.modal iframe {
  width: 100%;
  height: 500px;
  max-height: 80vh;
  margin: auto;
  display: block;
  outline: none;
  border: none;
}

.modal h6 {
  font-weight: 600;
}

.modal h5 {
  margin: 0;
  padding: 15px;
}

.pointer {
  cursor: pointer;
}

.circle-absorber {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000000000;
}

.circle-absorber canvas {
}

@media (max-width: 567px) {
  .modal {
    width: 90%;
  }

  .modal img {
    width: 100%;
  }

  .mobile-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}