html, body {
  width:100%;
  height:100%; }
body{
  background-color : black;
}
canvas {
  display : block;
  width : 100%;
  height : 300px;
  margin : auto;
  padding : 0;
  border : none;
  background-color : rgba(0,0,0,1);
}

b{
  text-shadow:
   1px 1px 1px red,
   2px 2px 1px red;
}
em{
  font-weight: bold;
}
u{
  text-decoration: underline dotted yellow;
}
input[type=button], input[type=submit], input[type=reset],input[type=text] {
  background-color: black;
  border: 1px solid yellow;
  color: yellow;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: 'Urbanist';
}
p {
  font-family: 'Urbanist';
  font-size: 16px;
  color: white;
}
label{
  font-family: 'Urbanist';
  font-size: 16px;
  color: yellow;
  padding: 5px 5px;
}


.h1 {
  font-family: 'Major Mono Display';
  font-size: 42px;
  font-weight: 700;
  color: white;
}
.social {
  font-size: 32px;
  font-weight: 700;
  color: yellow;
}
.subtitle {
  font-family: 'Urbanist';
  font-size: 24px;
  color: white;
  text-align:center;
  padding: 5px 0 5px 0;
}
.emailform {
  /* max-width: 400px; */
  padding-left: 30px;
  display: inline-block;
}
.col-2 {
    /* max-width: 410px; */
}
.col-1 {
  /* min-width: 411px;
  max-width: 820px; */
}
.bodytext {
  font-family: 'Urbanist';
  font-size: 18px;
  color: white;
  /* text-align:center; */
  padding: 5px 0 5px 0;
  /* border: 1px solid red; */
}

.event{
  padding: 5px 5px 5px 5px;
  border: 1px dashed red;
  margin-right:3px;
}
a {
color: yellow;

}

.content {
  column-count: 2;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 820px));
  gap: 5px;
}
