/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.  */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/*  apply a natural box layout model to all elements  */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
}

div#wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "header" "content" "footer";
  position: relative;
}

.header {
  grid-area: header;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "mslogo blank stclogo" "banner banner banner";
}
.header .mslogo {
  grid-area: mslogo;
  align-self: center;
  justify-self: center;
  padding: 0.5rem;
}
.header .mslogo img {
  width: 10rem;
  height: auto;
}
.header .blank {
  grid-area: blankl;
}
.header .stclogo {
  grid-area: stclogo;
  align-self: center;
  justify-self: center;
  padding: 0.5rem;
}
.header .stclogo img {
  width: 10rem;
  height: auto;
}
.header .banner {
  grid-area: banner;
  background-image: url(../media/ad-image/image2.png);
  background-repeat: no-repeat;
  background-size: 100%, auto;
  padding: 2rem;
  position: relative;
}
.header .banner .layer {
  background-color: rgba(1, 143, 255, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header .banner h1 {
  line-height: 1.6;
  position: inherit;
  text-align: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.content {
  grid-area: content;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "invitation" "information";
}
.content .invitation {
  grid-area: invitation;
  background-color: rgba(236, 240, 241, 0.6);
  padding: 0.5rem;
}
.content .invitation h1 {
  font-size: 1.3rem;
  color: #1D1D21;
}
.content .invitation p {
  color: #656470;
  line-height: 1.6;
}
.content .information {
  grid-area: information;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "date" "time" "location" "register";
  background-color: #0078d7;
}
.content .information label {
  font-weight: 700;
  color: #9EC0F6;
}
.content .information .date {
  grid-area: date;
  padding: 0.5rem;
  color: #F3F8FE;
  background-color: #242424;
}
.content .information .time {
  grid-area: time;
  padding: 0.5rem;
  color: #F3F8FE;
  background-color: #242424;
}
.content .information .location {
  grid-area: location;
  padding: 0.5rem;
  color: #F3F8FE;
  background-color: #242424;
}
.content .information .register {
  grid-area: register;
  padding: 0.5rem;
  color: #F3F8FE;
}
.content .information .register a {
  color: #F3F8FE;
  text-decoration: underline;
}
.content .information .register h1 {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin: 1rem 0 1rem 0;
}
.content .information .register h2 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}
.content .information .register input[type=text], .content .information .register input[type=email], .content .information .register input[type=number] {
  display: block;
  padding: 12px;
  margin-bottom: 0.5rem;
  height: auto;
  line-height: 1.6;
  width: 100%;
}
.content .information .register input[type=submit] {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 20px;
  width: 100%;
  height: auto;
  background-color: #0078d7;
  border: 2px solid #F3F8FE;
  color: #F3F8FE;
  margin: 1rem 0 0 0;
}
.content .information .register input[type=submit]:hover {
  border: 2px solid #242424;
  text-decoration: underline;
}
.content .information .register #modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}
.content .information .register .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 1rem;
  border: 1px solid #888;
  width: 80%;
}
.content .information .register .modal-content .modal-header h2 {
  color: #1D1D21;
}
.content .information .register .modal-content .modal-header .close {
  color: #aaa;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
}
.content .information .register .modal-content p {
  font-size: 0.8rem;
  color: #3F3B3B;
  line-height: 1.6;
}
.content .information .register .modal-content .close:hover, .content .information .register .modal-content .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.footer {
  grid-area: footer;
  display: grid;
  grid-template-columns: 2fr 0.5fr;
  grid-template-rows: auto;
  grid-template-areas: "fcontent flogo";
  background-color: #242424;
  padding: 0.5rem;
}
.footer .fcontent {
  grid-area: fcontent;
  color: #F3F8FE;
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 1.6;
  align-self: center;
  justify-self: center;
}
.footer .flogo {
  grid-area: flogo;
  align-self: center;
  justify-self: right;
}
.footer .flogo img {
  width: 5rem;
  height: auto;
}

@media only screen and (min-width: 45em) {
  .content {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "invitation information";
  }
  .content .invitation {
    margin: 0.5rem;
    border-radius: 5px;
  }
  .content .invitation h1 {
    text-align: center;
  }
  .content .information {
    margin: 0.5rem;
  }
  .content .information .register h2 {
    font-size: 0.7rem;
  }
  .content .information .register #modal .modal-content h2 {
    font-size: 1rem;
  }

  .footer .flogo {
    justify-self: center;
  }
  .footer .flogo img {
    width: 4rem;
    height: auto;
  }
}
@media only screen and (min-width: 64em) {
  .header .banner {
    padding: 4rem;
  }
  .header .banner .layer {
    background-color: rgba(1, 143, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .header .banner h1 {
    line-height: 1.6;
    position: inherit;
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
  }

  .content .invitation {
    margin: 2rem;
    border-radius: 5px;
    padding: 1rem;
  }
  .content .invitation h1 {
    text-align: center;
  }
  .content .information {
    margin: 1rem;
  }
  .content .information .register h2 {
    font-size: 1rem;
  }

  .footer .fcontent {
    font-size: 0.8rem;
  }
}

/*# sourceMappingURL=edm2.css.map */
