/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url('https://images.unsplash.com/photo-1509803874385-db7c23652552?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8Y2xvdWQlMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  font-family: "Arial";
  font-size: 18px;
  line-height: 1.5;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 20px;
}

p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}



/* Header styling */
#main-header {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 60px;
  text-align: center;
  margin: 20px 0;
  color: white;
  text-shadow: 
    2px 2px 5px rgba(0,0,0,0.5),   /* soft black shadow */
    4px 4px 10px rgba(100,100,100,0.3); /* soft grey shadow */
}
#header-link {
  display: block;        /* makes the link occupy full width */
  text-align: center;    /* centers the content inside the link */
  text-decoration: none; /* removes underline */
}

/* Container for floating images */
.link-container {
  position: absolute;
  text-align: center;
  transition: transform 0.3s;
}

.link-container:hover {
  transform: scale(1.1);
}

.link-container img {
  width: 150px;
  height: 150px;
}

.label {
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 3px black;
  margin-top: 5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  pointer-events: none;
}