@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --primary-color: #5865F2;
  --background-color: #2F3136;
  --text-color: #FFFFFF;
  --secondary-color: #36393F;
  --hover-color: #4752C4;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.container {
  background-color: var(--secondary-color);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 0.5rem 0;
}

.button:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

footer {
  background-color: var(--secondary-color);
  padding: 1rem;
  text-align: center;
  margin-top: auto;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
