body {
  background: url('themangarat-bg-alt2.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.header {
    background-color: #222;
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 2rem;
}


.title {
    font-family: 'Rubik Dirt', sans-serif;
    font-size: 34pt;
    font-weight: 100;
    color: rgb(211,130,25);
    /* text-shadow: -1px -1px 0 rgb(178, 155, 108), 1px -1px 0 rgb(178, 155, 108), -1px 1px 0 rgb(178, 155, 108), 1px 1px 0 rgb(178, 155, 108); */
    margin: 0;
    padding-left: 2rem;
}

.links-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.link-img {
  max-width: 800px;
  border-style: solid;
  border-color: #333;
  border-radius: 16px;
  border-width: 5px;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.link-img:hover {
  transform: scale(1.04);
  box-shadow: -4px 4px 11px rgba(0,0,0,0.5);
}

.placeholder-link:hover .coming-soon,
.placeholder-link:focus .coming-soon,
.placeholder-link:focus-visible .coming-soon {
  display: block;
}

.placeholder-link:focus,
.placeholder-link:focus-visible {
  background: #333;
  outline: 2px solid #888;
}

.placeholder-link {
  outline: none;
}

@media (max-width: 500px) {
  .header {
    margin-bottom: 0rem;
  }

  .title {
    font-size: 20pt;
    padding-left: 1rem;
  }

  .logo {
    width: 44px;
    height: 44px;
    padding-right: 0rem;
  }

  .link-img {
    max-width: 90vw;
  }
  

  .links-column {
    max-width: 90vw;
    gap: 0.7rem;
  }

  .placeholder-link {
    max-width: 90vw !important;
    min-height: calc(90vw*315/851) !important;
  }

  .tmr-footer {
    font-size: 12px;
    padding: 0.5rem 0 0.5rem 0;
  }

}