body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f6c9ff;
}
h1 {
    font-family: 'Miller Text', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 50px;
    margin-bottom: 10px;
    color: #36013f;
}
h2 {
    font-family: 'Miller Text', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
    color: #36013f;
}

img {
    border-radius: 10px;
}

.text {
    font-family: 'Georgia', serif;
    font-weight: 200;
    color: #36013f;
    font-size: large;
}
.footer {
    font-family: 'Georgia', serif;
    color: #36013f;
    font-size: smaller;
}

.center {
    margin: auto;
    text-align: center;
    align-items: center;
}

.content-container {
    width: 8in;
    padding: 20px;
    margin: auto;
    text-align: center;
    align-items: center;
}
.content {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.content-container img {
    max-width: 100%;
    align-self: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 25px
}
.button {
    text-align: center;
    font-family: 'Miller Text', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-size: larger;
    background-color: #f6b3ff;
    color: #36013f;
}
.button:hover {
    background-color: #6d2b7e;
    color: #f6b3ff;
}
