*, *::before, *::after {
    padding: 0;
    margin: 0;
}

/***  icon and link back to itineranttau.com ***/
#home {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 11;
}

#home img {
    width: 20px;
    height: auto;
    filter: invert(100%);
}

body {
    background: darkblue;
    max-width: 100vw;
}

main {
    background: cornsilk;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-evenly;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

h1 {
    margin: 20px 50px;
    color: ivory;
    font-family: 'Chalkduster', fantasy;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1.5rem;

}

canvas {
    max-width: 100vw;
    background: ivory;
    display: block;
    margin: 20px auto;
    border: 5px solid indigo;
    /* opacity: .3; */
}

[id^=message] {
    position: absolute;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    width: 480px;
    max-width: 100vw;
    height: 320px;
    margin: 20px auto;
    /* border: 5px solid orange; */
    z-index: 10;
}

button {
    margin: 20px;
    padding: 10px 15px;
    background: darkblue;
    color: white;
    border: 2px solid darkblue;
    border-radius: 10px;
    font-size: 1.25rem;
}

p.phone {
    display: none;
}

aside {
    font-family: Chalkduster, fantasy;
    text-align: right;
    padding: 20px;
    color: lightslategray;
}
aside > a {
    color: white;
}