@import url('https://fonts.googleapis.com/css2?family=Overlock&effect=outline');

body {
   background: #fff;
  color: #ffffff;
  align-items: center;
  font-family: 'Overlock', sans-serif;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
 background: var(--accent-color, #79addc);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 1rem 0;

}
.text1 {
   background-color:rgb(178 215 249);
}
.card {
 background: var(--accent-color, #79addc);
  border-radius: 12px;
  align-items: center;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}


.square{
  width: 100px;
  height: 100px;
  background-color: #4CAF50;
}

.textbox{
 
  display: block; 
  justify-self: left;
  background: var(--accent-color, #79addc);
  border: 2px solid white;
  color: white;      /* optional: makes the text inside white */
  background: var(--accent-color, #79addc);
}
.submit{
  background: var(--accent-color, #87bae7);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: sans-serif;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.back{
  background: var(--accent-color, #87bae7);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: sans-serif;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.page-header {
  width: 100%;
  background: var(--accent-color, #79addc);
  text-align: center;
  padding: 0;                 /* must match blog */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-header h1 {
  margin: 0;
  padding: 1.2rem 0;          /* blog uses 1.2rem */
  color: white;
  font-size: 2.5rem;          /* EXACT same as blog */
  line-height: 1;             /* prevents height differences */
}

/* Match Blog Navbar Size */
.navbar {
  background: var(--accent-color, #79addc);
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;          /* blog uses 0.5rem */
  box-shadow: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}
