body {
    max-width: 100%;
    display: flex;
    justify-content: center;
    hyphens: auto;
    align-items: center;
    height: 50%;
    margin: 3em;
    background-color: #101030;
}

.fade-in-text {
    animation: fadeIn 8s;
    text-wrap: balance;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

h1 {
    text-align: center;
    font-family: "minion-3-display", serif;
    font-weight: 700;
    font-style: italic;
    font-size: xxx-large;
    line-height: 100%;
    color: #f7f7e7;
}

h2 {
    text-align: center;
    font-family: "minion-3-caption", serif;
    font-weight: 700;
    font-style: normal;
    font-size: x-large;
    line-height: 120%;
    color: #f2f2d8;
}

p {
    text-align: center;
    font-family: "minion-3-display", serif;
    font-weight: 700;
    font-style: italic;
    font-size: xxx-large;
    line-height: 100%;
    color: #eeeeee;
}

img {
    max-width: 95%;
    height: auto;
  }
