@font-face {
  font-family: 'FOT-Rodin Pro L';
  src: url('/font/FOT-Rodin Pro L.otf') format('opentype');
}

@font-face {
  font-family: 'FOT-Rodin Pro M';
  src: url('/font/FOT-Rodin Pro M.otf') format('opentype');
}

body {
  font-family: 'FOT-Rodin Pro L';
  margin: 0;
  padding: 0;
}

a {
  color: #7696ff;
  text-decoration: none; 
}

.transcript {
  font-family: 'FOT-Rodin Pro M';
  padding: 1rem;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.header {
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #000000;
  box-sizing: border-box;
}

.title-page {
  font-size: 4rem;
  letter-spacing: -0.06em;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
  font-weight: lighter;
  opacity: 0;
  transform: translateY(20px); 
  animation: slideUp 1s ease-in-out forwards;
}

.cardsss {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px); 
  animation: slideUp 1s ease-in-out forwards;
  animation-delay: 0.5s;
}

.carded {
  width: 1000px;
  height: 50px;
  margin: 10px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s ease;
}

.carded:hover {
  cursor: pointer;
}

.card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

@media (max-width: 600px) {
  .carded {
    width: 300px;
    /* height: 25px; */
    height: 60px;
  }
  .text {
    font-size: 0.7rem;
    width: 280px;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0); 
  }
}

::selection {
  background: #7696ff;
}