@import url("https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Tagesschrift&display=swap');

*,
  *::before,
  *::after {
    box-sizing: border-box;
  }

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background: #fcfad9;
  color: #333;
  display: flex;
  flex-direction: column;
  font-family: "Cascadia Code", "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

.navbar {
  display: flex;
  width: 100vw;
  height: 70px;
  color: #ffffff;
  background-color: #333;
  justify-content: center;
  align-items: center;
  text-align: center;

  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;

    a {
      color: #ffffff;
      text-decoration: none;
      font-family: "Tagesschrift", sans-serif;
    }

    a:hover {
      text-decoration: underline;
    }
  }

}


main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 2rem;
  text-align: center;
  gap: 2rem;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

.icon {
  font-size: 6rem;
  color: #4d6c82;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.number {
  font-size: 8rem;
  font-weight: 700;
  color: #4d6c82;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}


.title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quote {
  font-style: italic;
  color: #4d6c82;
  font-size: 1rem;
  margin: 2rem 0;
  padding: 1rem;
  border-left: 4px solid #4d6c82;
  background-color: rgba(77, 108, 130, 0.1);
  border-radius: 0 8px 8px 0;
}

.quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.back-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4d6c82;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-right: 1rem;
}

.back-button:hover {
  background-color: #3a5266;
  text-decoration: none;
}

.secondary-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: #4d6c82;
  text-decoration: none;
  border: 2px solid #4d6c82;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: #4d6c82;
  color: white;
}

.additional-info {
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(77, 108, 130, 0.05);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #555;
}

.additional-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;

  a {
    color: #4d6c82;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #4d6c82;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  a:hover {
    background-color: #4d6c82;
    color: white;
  }
}

.tools-icon {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 3rem;
  color: #4d6c82;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .icon {
    font-size: 4rem;
  }

  .back-button,
  .secondary-button {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }

  .additional-links {
    flex-direction: column;
    align-items: center;
  }
}
