h1 {
    font-family: "Barrio", system-ui;
    font-size: 85px;
    font-style: normal;
    text-align: center;
    margin-bottom: 0;
}
h2{

    font-family: "Miniver", cursive;
    font-size: 20px;
    font-style: normal;
    text-align: center;
    margin-bottom: 3em;
}
h3{
    color: lightcoral;
}
#wrapper{
    background: white;
    border: black solid 2px;
    width: 50%;
    height:auto;
    margin-bottom: 100em;
    margin-left: auto;
    margin-right: auto;
    padding:15px;
}
body{
    background-color: pink;

}

input[type=text],input[type=email],input[type=date],select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=text]:focus {
    background-color: rgba(255, 192, 203, 0.29);
}
input[type=email]:focus {
     background-color: rgba(255, 192, 203, 0.29);
 }
input[type=date]:focus {
     background-color: rgba(255, 192, 203, 0.29);
 }
select:focus{
    background-color: rgba(255, 192, 203, 0.29);
}
textarea:focus{
    background-color: rgba(255, 192, 203, 0.29);
}

input[type=submit] {
    width: 100%;
    background-color: rgb(255, 113, 134);
    color: white;
    font-size: 1em;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    color: #ffffff;
    background-color: #f31354;
}

textarea{
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
}

html, body {
    height: 100%;
}

body {
    position: relative!important;
}


/*falling heart code https://wpzone.co/blog/how-to-add-falling-hearts-to-your-divi-wordpress-website/*/
body:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: url(https://wpzone.co/wp-content/uploads/2019/02/hearts.png);
    animation: falling-hearts 80s linear infinite;
}
@keyframes falling-hearts {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

@-webkit-keyframes falling-hearts {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

@-webkit-keyframes falling-hearts {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}