* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* > * {
  color: inherit;
}

html {
  font-size: 16px;
  color: #ffffff;
}

body {
  background-color: #606060;
  background-image: url(./background.jpg);
  background-size: cover;
  font-family: Arial, sans-serif;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom right, #38495a80, #51708b80);
  pointer-events: none;
}

main {
  filter: drop-shadow(2px 4px 6px #00000080);
}

.min-h-max {
  min-height: 100vh;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.container {
  max-width: Min(800px, 90%);
  padding: 1.25rem;
}

img {
  max-width: Min(500px, 80%);
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  width: 100%;
  max-width: Min(800px, 90%);
  margin: 1rem auto;
}

p {
  line-height: 1.4rem;
}
