/* Show it is fixed to the top */
body {
  min-height: 75rem;
  padding-top: 3.5rem;
}

h1 {
  color: white; /* Text color */
  text-shadow:
    -1px -1px 0 #000, /* Top-left shadow */
     1px -1px 0 #000, /* Top-right shadow */
    -1px  1px 0 #000, /* Bottom-left shadow */
     1px  1px 0 #000; /* Bottom-right shadow */
}

#carousel-caption p {
    font-weight: bold;
    color: white; /* Text color */
  text-shadow:
    -1px -1px 0 #000, /* Top-left shadow */
     1px -1px 0 #000, /* Top-right shadow */
    -1px  1px 0 #000, /* Bottom-left shadow */
     1px  1px 0 #000; /* Bottom-right shadow */
}

.footer-link {
    color: #060606;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0d6efd;
}

.social-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}