@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Luxurious+Script&family=Pinyon+Script&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full viewport background */
body {
  min-height: 100vh;
  height: auto;
  /*background-image: url("background.jpg");*/ /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-family: Arial, sans-serif;
}

/* Centered div */
.center-box {
    max-width: 500px;
  text-align: center;
  border-radius: 8px;
  color: #111;
}

img {
    position: fixed;
inset: 0; /* top:0; right:0; bottom:0; left:0 */
width: 100%;
height: 100%;
object-fit: cover; /* behaves like background-size: cover */
object-position: center;
z-index: -1;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
}

h2 {
    font-family: 'Luxurious Script', cursive;
    font-size: 5rem;
    line-height: 0.8;
}

h2 span {
    font-family: 'Instrument Serif', serif;
    color: #ff5757;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 20px;
}

#mc_embed_shell {
    position: absolute;
    top: 540px;
}

#mc_embed_signup {
    margin:0 15% 0 auto;
}

#mc_embed_shell #mc_embed_signup input[type="Email"] {
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #111;
    cursor: pointer;
    border: #111 1px solid;
    width: 80%;
}

#mc_embed_signup .mc-field-group {
    width: 100% !important;;
}

#mc_embed_shell #mc_embed_signup input.button {
    margin: 0 auto;
    padding: 6px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #111;
    color: #fff;
    cursor: pointer;
    border: #333 1px solid;
    height: auto;
}

#mc_embed_signup .foot {
    width: 100% !important;;
    grid-template-columns: 1fr !important;;
}

@media screen and (max-width: 1050px) {
    #mc_embed_shell {
    position: absolute;
    top: 340px;
}
    #mc_embed_signup {
        margin:0 calc(50vw - 125px);
    }
}

@media screen and (max-width: 600px) {
    .center-box {
        padding: 0 20px;
    }
    
    h2 {
        font-size: 3.5rem;
    }
    #mc_embed_signup {
    top: 300px;
    left: 0;
}
}