* {
	padding: 0px;
	margin: 0px;
}
body{
background-image:url(../bgcss.jpg) ;
    background-color: #cccccc;
    background-size: cover;
    display: flex;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

}
.container-big {

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 2em
  }

.title{
    font-family: “Open Sans”, sans-serif;
    font-size: 80px;
    margin: auto;
    align-items: center;
    font-weight: bold;
    padding-left: 1em;
    padding-right: 1em;
    color: rgb(0 0 0 / 88%);
    margin-top: 2%;
    text-shadow: 0px -2px 4px #fff, 0px -2px 10px #FF3, 0px -10px 20px         #F90, 0px -20px 40px #C33;
}


.container-main {
    display: flex;
    width: 100%;
    border-radius: 50px;
    justify-content: space-between;
    
}

.madLibsEdit {
    margin-left: 5%;
    padding: 2%;
    width: 30%;
    background-color: antiquewhite;
    height: 100%;
    border: 2px solid red;
    border-radius: 5px;
    text-align: left;
    color:#eeeee4;
    font-size: 1.2em;
    font-family: 'Calistoga', cursive;
    flex-shrink: 1;


    -webkit-box-shadow: 5px 8px 14px 7px rgba(255,80,92,0.84); 
    box-shadow: 5px 8px 14px 2px rgba(255,80,92,0.84);
    background: rgba(0,0,0, .3)

}

.madLibsPreview {
    margin-right: 5%;
    padding: 2%;
    width: 30%;
    background-color: aliceblue;
    height: 100%;
    border: 2px solid red;
    border-radius: 5px;
    text-align: left;
    color: #eeeee4;
    font-size: 1.2em;
    font-family: 'Calistoga', cursive;
    flex-shrink: 1;

    -webkit-box-shadow: 5px 8px 14px 7px rgba(255,80,92,0.84); 
    box-shadow: 5px 8px 14px 2px rgba(255,80,92,0.84);
    background: rgb(0 0 0 / 30%)

    
}    

.input-before:focus{
-webkit-box-shadow: 5px 8px 14px 7px rgba(255,80,92,0.84); 
box-shadow: 2px 2px 5px 1px #f4f6f7;
color: red;
}

.input-before{
    background: rgba(51, 170, 51, .1);
    font-weight: bold;
    font-size: 1em;
    -webkit-box-shadow: 5px 8px 14px 7px rgba(255,80,92,0.84); 
    box-shadow: 2px 2px 5px 1px #eba236;
    border-radius: 10px;
    font-family: 'Calistoga', cursive;
    text-align: center;

    box-sizing: border-box;
    border: none; 

}

.input-after{
    box-sizing: border-box;
    border: none; 

    background: transparent;
    border-color: rgba(51, 170, 51, .1); 

    font-weight: bolder;
    font-size: 1em;
    text-align: center;
    font-family: 'Calistoga', cursive;
    color:#eeeee4;
}


@media (max-width:767px ) {
    input{
        width: 3em;
    }
    .container-big {
        width: 100%;
        margin: 0;

    }
    .container-main {
        display: flex;
        flex-direction: column ;
        width: 90%;
        border-radius: 50px;
        justify-content: space-between;
        align-items: center;
        gap: 1em;
        margin: auto;



    }
    .madLibsEdit {
        width: 100%;
        margin: 0;
        font-size: 1em;

    }

    .madLibsPreview{
        width: 100%;
        margin: 0;
        font-size: 1em;

    }
}
@media (min-width:768px) and (max-width:991px )
{
    
}
@media (min-width:992px ) {

}