body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: aqua;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

#main {
    width: 80%;
    border-color: blue;
    border-width: 0.5rem;
    border-style: dotted;
    background-color: white;
    border-radius: 1.5rem;
}

#blurb {
    padding: 2rem 3rem;
    background-color: white;
    text-align: center;
    color: blue;
    font-family: 'MuseoModerno', sans-serif;
    font-weight: 100;
    font-size: 4rem;
}