@font-face {
    font-family: 'Coolvetica';
    src: url('/fonts/Coolvetica Rg.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'Coolvetica', sans-serif;
  /* font-family: 'Lato', sans-serif; */
  background-color: #121212;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  padding-right: 10px;
}

.navbar {
  background-color: #333;
  padding: 12px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  font-size: 19px;
  text-align: center;
}

.navbar-brand {
  color: #ffa500;
  text-decoration: none;
  font-size: 23px;
}

.container {
  margin-top: 70px;
  text-align: center;
  padding: 20px;
}

.link-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.link-item {
  width: 90%;
  max-width: 400px;
  padding: 20px;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #555;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.link-bar img {
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.link-item:hover img {
  transform: scale(1.05);
}

.link-bar h2, .link-bar p, #tooltip p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.link-bar h2 {
  margin: 12px 0;
  color: #ffa500;
  font-size: 25px;
  letter-spacing: 1px;
}

.link-bar p {
  margin: 8px 0;
  font-size: 16px;
  color: #ddd;
}

.link-bar a {
  text-decoration: none;
  color: #ffa500;
}

.link-bar a:visited {
  color: #ffa500;
}

a {
  color: #ffa500;
  text-decoration: none;
}

a:visited {
  color: #ffa500;
}

#tooltip {
  text-align: center;
  word-wrap: break-word;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#tooltip p {
  margin: 0;
  color: #f0f0f0;
  font-size: 18px;
  padding: 12px;
  background: none;
  box-shadow: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 700px) {
  .link-item {
    width: 95%;
  }

  #tooltip p {
    font-size: 17px;
  }
}
