body, html {
  margin: 0;
  overflow: auto;
  font-size: 12px;
  cursor: url('monaco_cursor.png'), default;
}
.container {
  background: #4568dc; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #4568dc, #b06ab3); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #4568dc, #b06ab3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.big-event-text {
  /*color: white;*/
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 5.3em;
  margin-bottom: 0px;
  margin-top: 25px;
  background-size: 16px;
    -webkit-background-clip: text;
    color: transparent;
    background-color: white;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 0, 0, .6) 25%, transparent 25%, transparent 50%, rgba(255, 0, 0, .6) 50%, rgba(255, 0, 0, .6) 75%, transparent 75%, transparent);
}

.alternate-event-text {
  font-size: 4em;
  font-style: italic;
  margin-bottom: 25px;
  color: white;
  margin-top: 0px;
}

.info-text {
  color: white;
  font-family: 'Work sans', sans-serif;
  font-size: 3em;
  margin-top: 0px;
  margin-bottom: 50px;
}

.small-event-text {
  color: white;
  font-family: 'Work sans', sans-serif;
  font-size: 2em;
  text-align: center;
  margin-top: 25px;
}

.site-name-text {
  position: absolute;
  left: 35px;
  top: 35px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
}

.event-container {
  margin-left: 200px;
  margin-right: 200px;
  text-align: center;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: red;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

#snow{
	background: none;
	font-family: Androgyne;
	background-image: url('https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-large-075d267ecbc42e3564c8ed43516dd557.png'), url('https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-medium-0b8a5e0732315b68e1f54185be7a1ad9.png'), url('https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-small-1ecd03b1fce08c24e064ff8c0a72c519.png');
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:1;
	-webkit-animation: snow 10s linear infinite;
	-moz-animation: snow 10s linear infinite;
	-ms-animation: snow 10s linear infinite;
	animation: snow 10s linear infinite;
  pointer-events: none;
}
@keyframes snow {
  0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
  50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
  100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}


#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 50px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 2em;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

@media screen and (max-device-width: 600px) and (orientation: portrait) {
  .site-name-text {
    display: none;
  }
}
