/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  background-image: url('https://www.svgbackgrounds.com/wp-content/uploads/2021/05/topography.svg');
  background-repeat: repeat;
  background-size: cover;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #111;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .card-dark {
    background-color: #2c2c2c !important;
    color: #92beeb !important;
    border-color: #444 !important;
  }

  .profile-img {
    max-width: 150px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
  }
  
  .profile-img:hover {
    transform: scale(1.05);
  }
  
  footer {
    background-color: #222;
    color: #fff;
  }
