
/*pricing main content styles*/
div#every {
    color: #dee2e6;
    font-family: Lora;
}
div#every div {
    background-color: #dee2e6;
    padding: 5px 40px 5px 0px;

}
div#every div p {
    font-size: xx-large;
    text-align: right;
    max-width: 30%;
    margin-left: auto;
    color: #111;
}
div#every h1 {
    font-size: 300px;
    font-weight: lighter;
    line-height: 250px;
    margin: 150px 0 90px 0;
}
/*contact form styling */
form#contactForm {
    max-width: 600px;
    margin: auto;
    font-family: Lora;
    font-size: 18px;
    border: 2px solid #dee2e6;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}
form#contactForm label {
    font-size: 20px;
    display: block;
    margin: 20px 0 10px;
}
form#contactForm input,
form#contactForm textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #111;
    margin-bottom: 20px;
    font-family: inherit;
    background-color: #dee2e6;
    color: #111;
    width: 80%;
    border: 3px solid #0000;
}
form#contactForm textarea {
    resize: none;
}
form#contactForm p {
    width: min-content;
    margin: 20px auto;
    font-family: Doto;
    font-size: 28px;
    background-color: #111;
    color: #dee2e6;
    padding: 15px 30px;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease-in-out;
}
form#contactForm p:hover {
    background-color: #dee2e6;
    color: #111;
    border: 2px solid #0000;
}
form#contactForm h1 {
    color: #dee2e6;
    text-decoration: underline;
}
form#contactForm label {
    color: #dee2e6;
}
/*popup styles*/
div#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 400px;
    max-width: 90vw;
    height: 200px;
    max-height: 90vh;
    background-color: black;
    border: 2px solid #dee2e6;
    color: #111;
    box-shadow: 0 8px 32px #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 24px;
    color: #dee2e6;
    text-align: center;
}
div#popup button#closebutton {
    width: min-content;
    margin: 0 auto;
    font-family: Doto;
    font-size: 28px;
    background-color: #111;
    color: #dee2e6;
    padding: 15px 30px;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease-in-out;
}
div#popup button#closebutton:hover {
    background-color: #dee2e6;
    color: #111;
    border: 2px solid #0000;
}