@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:wght@400;700&display=swap');

body {
    width: auto !important;
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(rgb(10 10 10 / 90%), rgb(10 10 10 / 90%)), url('https://d2ova09jg8x3xk.cloudfront.net/anabellapizzapasta.com.au/uploads/about.jpg') no-repeat;
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position: center !important;
/*     padding: 0px 350px; */
}

section.logo img {
    width: 300px;
    position: relative;
    margin-top: 3%;
    margin-bottom: 3%;
    transition: .5s all ease-in-out;
/*     transform: translateX(-10%) translateY(-50%); */
}

section.formmmm {
    background: #111;
    border: 2px solid #ECC401;
    /* box-shadow: 6px 6px 0px #eeeeee63; */
    border-radius: 5px;
    width: 55% !important;
    margin: auto;
    padding: 20px;
/*     animation: pulse-yellow 2.6s infinite; */
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgb(241 196 67 / 20%);
    }
    
    50% {
        box-shadow: 0 0 0 20px rgb(255 177 66 / 0%);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgb(255 177 66 / 0%);
    }
}

.personalinfos, .eventinfos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}

p.inquire_header {
    font-family: 'Libre Baskerville', sans-serif;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    width: 95%;
    margin: auto;
    text-transform: capitalize;
    color: #fff;
    border-bottom: 2px solid #ECC401;
}

label {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin: 5% auto;
    text-transform: uppercase;
}

.formbutton .form-control {
    font-family: 'Libre Baskerville', sans-serif;
    font-weight: 900;
    margin-top: 3%;
    margin-bottom: 1%;
    background: #111;
    border: 3px solid #fff;
    color: #fff;
    letter-spacing: 1px;
    font-size: 24px;
    padding: 10px;
    transition: 0.3s all ease;
    text-transform: capitalize;
}

.formbutton .form-control:hover {
    background: #ECC401;
    color: #111;
    border: 3px solid #fff;
}

.form-control:focus {
    border-color: #dddddd !important;
    box-shadow: 0px 0px 8px rgb(55 55 55 / 30%) !important;
}

::placeholder {
    color: #a2a2a2 !important;
    font-size: 14px;
    text-transform: lowercase;
}

#sent p {
    margin: 2% auto;
    text-align: center;
    color: #fff;
}

/* mobile view */
@media (max-width: 1024px) {
    section.formmmm {
        width: 80% !important;
    }
}

@media only screen and (max-height: 800px) and (min-height: 800px) {
    section.formmmm {
        width: 85% !important;
    }
}

@media (max-width: 768px) {
    section.formmmm {
        width: 90% !important;
    }

    label {
        font-size: 18px;
    }
}

@media only screen and (max-height: 600px) and (min-height: 600px) {
    section.formmmm {
        width: 85% !important;
    }

    body {
        height: 140vh !important;
    }
}

@media (max-width: 540px) {
    section.logo img {
        width: 250px;
    }
    
    body {
        height: 150vh !important;
    }
}

@media (max-width: 480px) {
    p.inquire_header {
        font-size: 40px;
    }
}

@media (max-width: 399px) {
    section.logo img {
        width: 250px;
    }
    
    section.formmmm {
        width: 85% !important;
    }

    p.inquire_header {
        font-size: 32px;
    }

    body {
        height: 200vh !important;
    }

    .formbutton .form-control {
        margin-top: 10%;
    }
}