@font-face {
  font-family: 'Licorice';
  src: url('fonts/Licorice-Regular.ttf') format('truetype');
}

body {
  background-color: #bbbbbb;
  background-image: url('images/Collage.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top left;
  /* Align to top left */
  background-size: cover;
  background-blend-mode: soft-light;
}

a:link,
a:visited {
  color: #34527a;
}

a:active {
  color: #ee0000;
}

.title-container {
  display: flex;
  justify-content: center;
  margin: 2rem;
}

.title {
  font-family: 'Licorice';
  font-size: 100px;
  color: #2e486b;
  margin: 1rem 3rem .75rem;
  text-shadow:
    -3px -3px 16px #e1eaf7,
    3px -3px 16px #e1eaf7,
    -3px 3px 16px #e1eaf7,
    3px 3px 16px #e1eaf7;
  /* Fading outer edge */
}

.link-card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  width: fit-content;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem;
  background-color: aliceblue;
  border-radius: 20px;
  box-shadow: 5px 5px 15px #42525e;
}

.link-image {
  width: 200px;
  height: 300px;
  margin: 1rem;
  object-fit: cover;
  border-radius: 15px;
}

.link-label {
  font-size: 40px;
  font-weight: bold;
  color: #2e486b;
  margin: .25rem 0 .6rem;
  font-family: 'Licorice';
}

.coming-soon {
  font-size: 20px;
  font-weight: bold;
  color: #6b2e2e;
  margin: .25rem 0 .6rem;
  font-family: 'Licorice';
}

.footer {
  color: #2e486b;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: .5rem;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 0 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: #2e486b solid 3px;
  border-radius: 10px;
  z-index: 1000;
  font-family: 'Licorice';
  font-size: 40px;
  font-weight: bold;
  color: #2e486b;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  background-color: #34527a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
