/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}


/* Site Styles */
body {
    font-size: 1.15rem;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    margin: 2rem auto;
    font-family: sans-serif;
    background-color: black;
    color: white;
}

/* Medium screens */
@media (min-width: 480px) {
    body {
        max-width: 40rem;
    }
}

/* Larger screens */
@media (min-width: 1024px) {
    body {
        max-width: 50rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

h1 {
    font-size: 3rem;
    padding-bottom: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    padding-bottom: 1.5rem;
    font-weight: 700;
}

p {
    line-height: 2rem;
    margin-bottom: 1.8rem;
}

ul {
    margin-bottom: 1.8rem;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    font-weight: 600;
}

a:link {
    color: rgb(65, 152, 74)
}

a:visited {
    color: rgb(220, 106, 125)
}

.app-store-badge {
    text-align: center;
    padding-bottom: 1rem;
}
