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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: #3D00FF;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

main,
header,
footer {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0 1rem;
  max-width: 1600px;
}
@media screen and (max-width: 900px) {
  main,
  header,
  footer {
    flex-direction: column;
  }
}

header {
  padding-top: 2rem;
}
@media screen and (max-width: 900px) {
  header h3 {
    margin-bottom: 2rem;
  }
}

main {
  padding: 8rem 4rem 10rem 4rem;
}
@media screen and (max-width: 900px) {
  main {
    padding: 4rem;
  }
}

footer {
  justify-content: center;
}
@media screen and (max-width: 900px) {
  footer {
    padding-bottom: 4rem;
  }
}

img {
  width: 300px;
  height: auto;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.1;
}

p {
  font-size: 1.2rem;
  line-height: 1.3;
}

span {
  font-size: 8rem;
  line-height: 1.3;
}

a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */