/* 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." */

/* Fonts */


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

.logo {
  width: 120px;      /* Adjust width as needed */
  height: auto;      /* Keeps the aspect ratio */
  display: block;
  margin: 0 auto 1.5rem;  /* Centers the logo and adds spacing below */
}

body {
  margin: 0;
  background-color: #0A090A;
  background-image: url('Assets/Background1.jpg'); /* update this path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: 'Aileron', sans-serif;
  padding: 4rem 1rem;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  margin: 0 auto;
  max-width: 90ch;
  width: 100%;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid #2e2e2e;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.journal-page .content {
  text-align: left;
  align-items: flex-start;
}

video {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transform: scaleX(-1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

#showAffirmation {
  background: none;
  border: none;
  color: #d1f1fa;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Aileron', sans-serif;
  margin-top: 1.5rem;
}

#showAffirmation:hover {
  background-color: #2075a0;
  border-radius: 2px;
}

.affirmation {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1rem;
  max-width: 600px;
  line-height: 1.6;
  opacity: 1;
  text-align: center;
  transition: opacity 0.4s ease;
}

.hidden {
  display: none;
}

/* Optional: link styling */
.links {
  margin-top: 1.8rem;
}

.links a {
  text-decoration: none;
  color: #ffffff;
  padding: 0 4px;
  transition: background-color 0.2s ease;
}

.links a:hover {
  background-color: #2075a0;
  border-radius: 2px;
}