html, body {
  background-color:#FFF;
  color:#2c2c2c;
  font-family: 'Montserrat', Helvetica, Arial;
  font-weight:400;
  font-size: 14px;
  height:100%;
  margin:0;
  min-height: 100%;
  padding:0;
  width:100vw;
  -webkit-font-smoothing:antialiased;
}

/* General */
* { box-sizing: border-box; margin: 0; padding: 0; }
a:active, a:hover, a:visited, a:link  { text-decoration: none; color: #FFF; }
h1 { font-size: 12em; font-family: 'Montserrat', Helvetica, Arial; font-weight: 900; letter-spacing: -1.1rem; line-height: 0.78em; }
h2 { font-size: 2em; font-family: 'Montserrat', Helvetica, Arial; font-weight: 900; letter-spacing: -0.1rem; line-height: 0.78em; }
p { font-size: 1.05em; font-family: 'Montserrat', Helvetica, Arial; font-weight: 400; letter-spacing: -0.01rem; line-height: 1.1em; }
label { display: block; padding-bottom:5px; }

/* Font styles */
.ita { font-style: italic; margin-left: 5px; padding-top: 15px; }
.strong { font-size: 1.5em; font-weight: 700; }

/* Dynamic background */
body.gradient-background {
  background-color: #FFF;
  background-image: linear-gradient(108deg, rgba(7,208,76,1) 0%, rgba(0,179,255,1) 50%, rgba(134,46,224,1) 100%);
  background-size: 400% 100%;
  animation: gradient 20s ease infinite;
}

/* Default block of body dynamic background and toggle */
.overlay-background { position:absolute; height: 100%; width: 100%; min-width: 100%; min-height: 100%; z-index: 0; }
.block-default { background-color: #FFF; opacity: 1; visibility: visible; transition: all 1s ease; }
.show-party { background: transparent; opacity: 0; visibility: hidden; transition: all 1s ease; }

/* Dynamic color of strong header elements */
strong.text-gradient {
  animation: gradient 15s ease infinite;
  background-color: #FFF;;
  background-image: linear-gradient(-45deg, rgba(133,7,208,1) 0%, rgba(238,80,156,1) 50%, rgba(255,186,0,1) 100%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
  margin:0 10px;
  padding:5px;
  z-index: 100;
}

/* Dynamic color gradient animation */
@keyframes gradient {
	0% { background-position: 0% 100%; }
	50% { background-position: 100% 0%; }
	100% { background-position: 0% 100%; }
}

/* Content */
.content-wrapper {
  display: block;
  margin: auto;
  max-width: 100vw;
  min-height: 100%;
  padding-top:15vh;
  position: relative;
  width: fit-content;
  z-index: 999;
}

/* Buttons */
.button-wrapper {
  position: relative;
  margin-top:6rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width:100%;
  height: 5em;
}

button {
  background-color: rgba(255,255,255,0.7);
  border: 1px solid #2c2c2c;
  border-bottom: 6px solid #2c2c2c;
  border-radius: 15px;
  box-shadow: 0px 5px 15px 3px rgba(0,0,0,0.3);
  color: #3f3f3f;
  cursor:pointer;
  font-family: 'Montserrat', Helvetica, Arial;
  font-size: 16px;
  font-weight: 900;
  height: 40px;
  width:25%;
  min-width: fit-content;
  padding:5px 10px;
  transition: all 0.2s;
}

button:hover {
  box-shadow: 0px 5px 3px 0px rgba(0,0,0,0.1);
  border-bottom: 1px solid #2c2c2c;
  color: #2c2c2c;
  letter-spacing: -0.4px;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
  transform: translateY(0px) translateX(0);
  transform: scale(0.1);
}

.shown {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease-out;
  transform: translateY(-40px) translateX(0);
  transform: scale(1);
}

/* Message boxes and contact form */
.msgbox {
  background-color: rgba(0,0,0,0.9);
  box-shadow: 0px 5px 15px 3px rgba(0,0,0,0.3);
  color: #FFF;
  bottom: 100%;
  left: 25%;
  border: 0;
  border-radius: 10px;
  position: absolute;
  padding: 15px 10px;
  margin: 0px auto;
  width: 50%;
}

.field {
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  font-family: 'Montserrat';
  font-size: 1em;
  padding: 5px;
  margin-bottom: 10px;
  width: 100%;
}

.txtfield {
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  font-family: 'Montserrat';
  font-size: 16px;
  padding: 5px;
  width: 100%;
  font-size: 1em;
  height: 8em;
  min-width: 4em;
  max-height: 16em;
  max-width: 100%;
  min-width: 100%;
}
#contactbox h2 { margin-bottom: 10px; } 
.returnmsg { padding: 10px; height: fit-content; }
.success { background-color: rgba(7,208,76,1); }
.error { background-color: rgba(208, 7, 84, 1); }
#footer { position: absolute; bottom: 3px; text-align: center; height: 20px; width: 100%; }

@media only screen and (min-width: 600px) and (max-width: 1100px) {
    h1 { font-size: 7rem; font-family: 'Montserrat', Helvetica, Arial; font-weight: 900; letter-spacing: -0.8rem; line-height: 0.78em; }
}
@media only screen and (max-width: 600px) {
    h1 { font-size: 4rem; font-family: 'Montserrat', Helvetica, Arial; font-weight: 900; letter-spacing: -0.5rem; line-height: 0.78em; }
    .msgbox { background-color: rgba(0,0,0,0.9); box-shadow: 0px 5px 15px 3px rgba(0,0,0,0.3); color: #FFF; bottom: 100%; left: 5%; border: 0; border-radius: 10px; position: absolute; padding: 15px 10px; margin: 0px auto; width: 90%; }
    .txtfield { border: 1px solid #2c2c2c; border-radius: 6px; font-family: 'Montserrat'; font-size: 16px; padding: 5px; width: 100%; font-size: 1em; height: 4em; min-width: 4em; max-height: 4em; max-width: 100%; min-width: 100%; }
}