@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Playwrite+AT&display=swap');

:root {
  --bg-color-light: #e0e0e0;
  --bg-color-main: #f5f5f5;
  --text-color: black;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--text-color);
}

header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;

  background-color: var(--bg-color-light);
  text-align: center;
  box-shadow: var(--box-shadow);

  font-family: 'Playwrite AT', cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header h1 {
  grid-column: 2 / 3;
  font-family: 'Playwrite AT', cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  background-color: var(--bg-color-main);
  padding: 2rem;

  /* background: url('img/background.jpg') no-repeat center center fixed; */
  background-size: cover;
}

.main-container {
  grid-column: 2 / 3;
  padding: 1rem;
  overflow-y: auto;
  height: 100%;
}

footer {
  position: sticky;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-color: var(--bg-color-light);
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  z-index: 44;

  font-family: 'Playwrite AT', cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--bg-color-light);
  color: var(--text-color);
  transition: background-color 0.3s ease;
  margin: 10px 0;
}

button:hover {
  background-color: var(--bg-color-main);
}
