/* Global resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: #FBF6F0;
  font-family: Inter, Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* GLOBAL BUTTON STYLE — no widths here */
.btn {
  background: #1A73E8;
  color: white;

  /* UPDATED: radius with rem */
  border-radius: 0.75rem;
  display: inline-block;
  text-align: center;
  transition: 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  
}

.btn:hover {
  transform: scale(1.06);
  background: #0F4BB8;
}
