@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;

  font-family: 'Markazi Text', snas-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #f8f9fa;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

footer {
  background-color: #f8f9fa;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #dee2e6;
  opacity: 0.5;
  fonr-size: 0.5rem;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
}

button {
  border: solid 0.5px lightgray;
  border-radius: 999rem;
  padding: 1rem 4rem;
  background: none;
  cursor: pointer;
}
