/* normalization */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}
body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #4b654c;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}
a {
  color: inherit;
  text-decoration: none;
}
/* end normalization */
header {
  background: #294d2f;
  border: none;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.45);
  position: relative;
  padding: 20px;
}
header p {
  letter-spacing: 5px;
  font-weight: bold;
  font-size: 30px;
}
.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.content h1 {
  font-size: 65px;
  padding: 10px 0;
}
.content h2 {
  font-size: 25px;
  padding: 10px 0;
}
.content p {
  padding: 10px 0;
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #4b654c;
}
@media only screen and (max-width: 800px) {
  .content {
    padding: 20px;
  }
  .content h1{
    font-size: 35px;
  }
  .content h2{
    font-size: 20px;
  }

}
@media only screen and (max-width: 400px) {
  .content h1,
  .content h2,
  .content p{
    padding: 5px 0;
  }
}
