html {
    /*background-image: url("../assets/setup.jpg");*/
    background-color: rgba(0, 0, 0, .8);
    background-image: url("/assets/guestbookbg.png");
    background-repeat: repeat;
}

body {
    width: 100%;
    margin: 0;
    color: white;
}

#main {
    margin: 3vw 2vw 60px 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#input {
    width: 420px;
    border: 2px solid white;
    text-align: left;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.message {
    width: 420px;
    margin: 20px 0;
    border: 2px solid white;
    text-align: left;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.field > * {
    display: block;
}

.field > textarea {
    width: 100%;
    height: 100px;
}

.m_header {
    padding-bottom: 5px;
    border-bottom: 1px solid white;
}

.m_text {
    padding: 15px 0px 0px 0px;
}

.date_text {
    float: right;
}

/* mobile only */
@media screen and (max-width: 464px) {
    #input, .message {
        width: 100%;
        box-sizing: border-box;
    }

    #messages {
        width: 100%;
    }
}
