/* (A) WHOLE PAGE */
*{ font-family: "Comic Sans MS"; background: url("background.webp") no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; color:white; }

body {
  max-width: 600px;
  padding: 20px;
  margin: 0 auto;
  
}

/* (B) SYSTEM MESSAGE */
div.note {
  padding: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  background: #ffdddd;
}

/* (C) GUEST BOOK ENTRIES */
.gb-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.gb-ico {
  flex-shrink: 0;
  width: 50px;
  margin-right: 10px;
}
.gb-msg {
  display: flex;
  flex-wrap: wrap;
}
.gb-comment {
  width: 100%;
  margin-bottom: 3px;
  font-size: 20px;
}
.gb-name, .gb-date { font-size: 14px; }
.gb-name {
  font-weight: 700;
  text-transform: uppercase;
  color: #f00;
  margin-right: 5px;
}
.gb-date {
  flex-grow: 1;
  color: #9a9a9a;
}

/* (D) SIGN GUESTBOOK */
#gb-form {
  margin-top: 20px;
  display: grid;
  grid-template-areas: "a a a" "b c d";
  grid-gap: 10px;
}
#gb-form * {
  display: block;
  width: 100%;
  padding: 10px;
  border: 0;
}
#gb-form textarea, #gb-form input[type=text], #gb-form input[type=email] {
  border: 1px solid #e5e5e5;
}
#gb-form textarea {
  grid-area: a;
  height: 80px;
}
#gb-form input[type=text] { grid-area: b; }
#gb-form input[type=email] { grid-area: c; }
#gb-form input[type=submit] {
  grid-area: d;
  font-weight: 700;
  color: #fff;
  background: #f00;
  cursor: pointer;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #fff;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #fff;
}