@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
  overflow-x: hidden;
  background-color: #06113c;
  color: #dfdfdf;
  font-family: 'Roboto', sans-serif;
}

.card {
  border-radius: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  width: 250px;
}

.card-img-top-small {
  height: 100px;
}

#small-card {
  background-color: rgb(89, 89, 89);
  color: #dfdfdf;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#small-card-link {
  color: #dfdfdf;
  text-decoration: none;
}

.line {
  height: 70px;
  border-radius: 35px;
  border: 2px solid #000000;
  background-color: #dfdfdf;
  -webkit-box-shadow: 10px 10px 0px -2px #000000;
  box-shadow: 10px 10px 0px -2px #000000;
  color: #06113c;
  transition: all 1s ease-out;
}

.line:hover,
.line:focus {
  background-color: #b8b8b8;
  cursor: pointer;
}

.logo {
  height: 55px;
  width: 55px;
}

.big-share-button {
  height: 40px !important;
  width: 40px !important;
  cursor: pointer;
}

.share-button {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.share-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.share-link {
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
}

.share-link>img {
  height: 40px;
  width: 40px;
}

.copy-button{
  cursor: pointer;

}

.copied-text {
  color: green;
  font-size: 12px;
}

.modal-body {
  min-height: 475px;
}

.modal-content {
  border-radius: 2rem;
  color: #06113c;
  background-color: #dfdfdf;
}

.modal-backdrop {
  opacity: 0.5 !important;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-weight: lighter;
  font-size: 25px;
}

h2 {
  font-weight: lighter;
  font-size: 20px;
}

p {
  display: inline-block;
  margin: 5px 1px;
  font-size: 15px;
}

li {
  font-size: 15px;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-20px);
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .card-img-top {
    width: 100%;
    max-width: 200px;
  }

  .logo {
    height: 40px;
    width: 40px;
  }

  .share-link>img {
    height: 30px;
    width: 30px;
  }
}

.footer {
  font-size: x-small;
}

.footer-link {
  color: #dfdfdf;
  text-decoration: none;
}

.footer-link:hover {
  color: #b8b8b8;
}