/* * {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
} */

html, body {
    height: 100%;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300 !important;
    color: rgb(49, 49, 49);
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 300 !important;
}

#content-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 700px;
    background-image: url("../img/image4.jpeg");
    background-repeat:no-repeat;
    background-position:center;
}

/* jumbotron styles */

#contact-form1 {
    background-position: left, right;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* background-attachment: fixed; */
    height: 400px;
    width: 375px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

#contact-form {
    display: flex;
    flex-direction: column;
    width: 80%;
}

#contact-form div {
    width: 75%;
    font-family: 'Parisienne', cursive; 
    font-size: 25px;
}

#name-input {
    height: 35px;
}

#email-input {
    height: 35px;
}

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 1px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=email], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 1px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

#button {
    background-image: linear-gradient(#272727, #000000);
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    width: 80px;
    margin-left: 20px;
}

#button:hover {
    background-image: linear-gradient(rgb(51, 51, 51), rgba(43, 43, 43, 0.733));
}

.contact-form-container {
    border-radius: 5px;
    padding: 0 0 0 20px;
    color: #3f3f3f;
}

.contact-form-container label {
    color: #3f3f3f;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.countdown-container h1 {
    margin-top: 25px;
}

@media only screen and (max-width: 615px) {

    #contact-form1 {
        background-image: url("../img/5x7_invite_ShayleeJeff_FR3.png");
        background-position: left, right;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-repeat: no-repeat;
        background-size: contain;
        /* background-attachment: fixed; */
        height: 385px;
        width: 275px;
        margin-top: 50px;
    }

    #contact-form div {
        width: 75%;
        font-family: 'Parisienne', cursive; 
        font-size: 15px;
    }

    #name-input {
        height: 15px;
    }

    #email-input {
        height: 15px;
    }

    #button {
        background-image: linear-gradient(#f4e09c, #c3922e);
        color: white;
        padding: 5px 9px;
        border: none;
        border-radius: 4px;
        font-size: 10px;
        cursor: pointer;
        -webkit-transition: background-color 0.2s ease-out;
        transition: background-color 0.2s ease-out;
        width: 50px;
        margin-left: 20px;
    }

    h4 {
        font-family: 'Parisienne', cursive; 
        font-size: 18px;
    }
}

