.hero {
    height: 100vh;
    width: 100vw;
    background: url("../images/home-background-placeholder.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* background-size: 130%; */
    padding-top: 32vh;
    padding-right: 50vh;
}

.hero > p,
.hero > h1,
.call-to-action {
    max-width: 50%;
    margin-left: 10%;
}

.hero > h1 {
    font-size: 45px;
    line-height: 3.5rem;
    margin-bottom: 20px;
}

.hero > p {
    font-size: 18px;
    max-width: 50%;
    line-height: 2rem;
}

.call-to-action {
    margin-top: 50px;
    margin-bottom: 30px;
}

.cta-primary {
    margin: 0;
    margin-top: 10rem;
}

.special-offers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px;
}

.special-offers > h2,
.special-offers > p,
.special-offers > form {
    margin: 15px;
}

.special-offers > h2 {
    font-size: 20px;
    margin-bottom: 0;
}

.special-offers > p {
    font-size: 18px;
}

.special-offers > form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.special-offers > form > input[type='email'] {
    background-color: var(--color-light);
    font-family: var(--font-secondary);
    color: var(--color-dark);
    font-size: 13pt;
    font-weight: bold;
    padding: 0.85rem 2rem 0.85rem 2rem;
    margin: 0.6rem;
    width: 350px;
}

.special-offers > form > input[type='submit']:hover {
    text-decoration: none;
    color: #fff;
    -moz-box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    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.4); /* Black w/ opacity */
}
  
/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 4rem;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modal-text-content {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 3rem;
    width: 90%;
    text-align: center;
    font-family: var(--font-priamry);
}
  