.invite {
    margin: 0 auto;
    max-width: 375px;
    background: #f3d960;
    box-shadow: inset 2em 0 3em 0 #e5c94e;
    text-align: center;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.header {
    padding-top: 50px;
    background: url(header.png) no-repeat top;
    background-size: auto 230px;
    width: 100%;
    height: 280px;
    position: relative;
}
.header > .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    color: #e7215f;
    font-size: 3em;
    text-transform: uppercase;
}
.invite-text {
    margin-top: -1em;
    padding: 0 1em;
    color: #e7215f;
}
.links {
    width: 100%;
    height: 165px;
    display: flex;
    justify-content: center;
}
.links a {
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
}
.date {
    background: url(orange-hex.png) no-repeat;
    background-size: 150px auto;
    width: 150px;
    height: 150px;
    align-self: flex-end;
}
.date p {
    margin-top: 22px;
    font-size: 4em;
}
.date .month {
    display: block;
    margin-top: -.4em;
    font-size: .25em;
}
.place {
    background: url(blue-hex.png) no-repeat;
    background-size: 150px auto;
    width: 150px;
    height: 150px;
}
.place p {
    background: url(location.png) no-repeat 25px top;
    background-size: 95px auto;
    font-size: 1em;
    padding-top: 83px;
}
.hour {
    margin-top: 15px;
    font-size: 1.5em;
}
.hour p {
    margin-top: 0;
    margin-bottom: 0;
}
.component {
    margin-top: 35px;
    padding: 0 7%;
}
.component .title {
    color: #e7215f;
}
.form-group {
    display: flex;
    margin-bottom: 1em;
    padding: 0 7%;
}
.form-group label {
    width: 30%;
    text-align: right;
    font-size: .80em;
    margin-right: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 65%;
}
.buttons {
    justify-content: flex-end;
}
.buttons button {
    border-radius: 7px;
    color: #ffffff;
    font-size: 1em;
    background: #ff6839;
    padding: 5px 10px;
    text-decoration: none;
}
.footer {
    background-color: #e2ece4;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: .85em;
    padding: 2px 7%;
}
.footer p {
    margin: 3px auto;
}
.footer a {
    text-decoration: none;
    color: black;
}
.modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black with opacity */
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 35vh 15%;
    padding: 2.5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
/* Modal header */
.modal-header {
    background-color: #f3d960;
    color: #e7215f;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.modal-header .close {
    float: right;
    background-color: #ff6839;
    padding: 0 6px 1px;
    border-radius: 10px; /* Rounded corners */
    color: white;
}
.modal-header h4 {
    margin: 0;
}
.modal-content button {
    border-radius: 7px;
    color: #ffffff;
    font-size: 1em;
    background: #ff6839;
    padding: 5px 10px;
    text-decoration: none;
}
.modal-content button:hover {
    background: #d15732;
    text-decoration: none;
}