main {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    padding-left: 100px;
    padding-right: 100px;
}


h1 {
    font-size: 3rem;
    padding-bottom: 20px;
    padding-top: 120px;
}

p {
    font-size: 1.8rem;
    padding-bottom: 20px;
}

/* Fixes footer bug. */
.copyright > p {
    font-size: 0.9rem;
}


form {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

label {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}

textarea,
[type="text"],
[type="email"] {
    background-color: var(--color-light);
    font-family: var(--font-secondary);
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.85rem 2rem 0.85rem 2rem;
    /* margin: 0.6rem; */
}

.cta {
    max-width: 15rem;
    margin: 0px;
    margin-top: 5rem;
}

/* 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);
}

/* Fix modal button bug. */
.cta-modal {
    margin-top: 0;
}
  