/* Basic responsive styling for Buzzwords To Go */
*{box-sizing:border-box}
html,body{height:100%}

body {
  background: linear-gradient(to bottom, #223042, #2B3B50);
  color: #e0e0e0;
  font-family: Inter,Segoe UI,Roboto,Arial,sans-serif;
  text-align: center;
  padding: 2rem;
}
header{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0.75rem;
  margin-bottom:1.75rem;
}
.site-logo{
  height:76px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}
header h1{font-size: 2rem;
  letter-spacing: 2px;
}

@media (min-width:720px){
  header{flex-direction:row;gap:1rem}
}
.buzz-container{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
  margin: 0 auto;
  padding:1.25rem;
  max-width:960px;
  width:94%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35)
}
.buzzword{
  background:#ffffff;
  border:1px solid #e6e9f2;
  padding:0.9rem 1.2rem;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(12,24,56,0.06);
  cursor:pointer;
  transition:transform .16s ease,box-shadow .16s ease;
  color:#0f172a;
  font-weight:600;
  min-width:140px;
  text-align:center;
  font-size: 1.5rem;
  margin: 1rem 0;
  border-bottom: 1px solid #555;
}
.buzzword:focus,.buzzword:hover{transform:translateY(-6px);box-shadow:0 14px 36px rgba(12,24,56,0.12);outline:none}

@media (max-width:520px){
  .buzzword {flex:1 1 100%;min-width:0}
}
