
.container{
    width: 100%;
    height: 100vh;
    /* padding: 2em; */
    background-color: #dedede;
    display: flex;
    /* align-content: stretch; */
    justify-content: center;
    align-items: center;
    background: linear-gradient(60deg, hsla(357, 90%, 27%, 1) 0%, hsla(0, 0%, 20%, 1) 57%);

}
.container>div{
   
    background-color: white;

    margin: 32px 0px 32px 0px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /*box-shadow: 0px 16px 14px -16px black;*/
    padding: 13px;
}

.container>div>img {
    width: 31em;
}

.container>div>*{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.button
{
    background: linear-gradient(103deg, #0ff6ff 0%, #26a7ee 100%);
    width: 100%;
    text-align: center;
    margin-top: 2em;
    padding: 24px 0px;
    color: white;
    border-radius: 6px;
}

.button:focus{
    outline:none;
    border: 2px solid;
    border-color:#9ecaed;
    box-shadow:0 4px 10px #9ecaed;
}

.blue
{
    
    background: linear-gradient(35deg, #2fb711 0%, #00ff3b 100%);
}

.separator{
    height: 1px;
    display: block;
    width: 100%;
    background-color: #c4c4c4
}


@media only screen and (max-width: 600px) {
   

    .container>div {
        width: 100%;
    }
    .container>div>img {
        width: 100% !important;
    }
  }