body {
  background-color: #28282B;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: white;
  margin: 0 auto;
  position: relative;
  padding: 16px;
  line-height: 1.4;
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/rigby.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: -1;
}


footer {
  margin: 0 auto;
  width: 550px;
  min-height: 25px;
  background-color: #222225;
  border-radius: 6px;
  text-align: center;
  display: flex;            
  justify-content: center;  
  align-items: center;                  
  box-sizing: border-box;  
}


a {
  color: lightblue;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
  transition: all 0.2s ease;
}

@media (max-width: 600px) {
  body {
    padding: 8px;
  }
}

.card {
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  border-radius: 6px;
  margin: 14px auto;
  padding: 14px;
  max-width: 450px;
  max-height: 350px;
  background-color: #222225;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

.card h1, .card h2, .card h3, .card p {
  margin: 0 auto;
  padding: 2px;
}

.card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;      
  gap: 20px;                 
}

.social-icons img {
  width: 40px;       
  height: 40px;         
  object-fit: contain;   
  display: block;           
}

