*{
	touch-action: pan-y;
    box-sizing: border-box;
    margin: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    user-select: none; /* Normal (chrome)*/
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}
h1{
    color: white;
    font-size: 3rem;
    font-weight: 300;
}
body{

    height: 100vh;
    width: 100vw;
}
main{
    position: relative;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
article{
    flex: 1 1 500px;
    text-align: center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center;
}
#e{
    background-image: url(left.jpg);
}
#z{
    background-image: url(right.jpg);
}
.blur{
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    padding: 30px;
    padding-top: 80px;
    background-color: #2929293a;
    display: flex;
    justify-content:first baseline;
    align-items: center;
    flex-direction: column;
}

.btn{
    border: 1px solid white;
    padding: 20px;
    flex: 1 1;
    max-width: 300px;
    min-width: 200px;
    transition: all 0.15s linear;
    margin: auto;
    margin-top: 100px;
}
.btn h2{
    color: white;
    font-weight: 200;
}
.btn:hover{
    transform: scale(1.02);
    cursor: pointer;
}
.btn:active{
    transform: scale(0.98);
    cursor: pointer;
}
a{
    text-decoration: none;
}
.blur p{
    margin-top: 30px;
    color: white;
    font-size: 1.3rem;
    font-weight: 100;
}

form{
    display: flex;
    width: 100%;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px;
    margin-top: 80px;
    box-shadow: 0px 0px 10px 10px rgba(33, 33, 33, 0.034);
}
input{
    outline: none;
    max-width: 300px;
    background-color: rgba(1,1,1,0);
    border: 1px solid rgb(43, 43, 43);
    margin: 10px 0px;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 200;
    color: rgb(43, 43, 43);
    padding-left: 15px;
}

#send{
    margin-top: 40px;
    padding-left: 5px 10px;
    transition: all 0.1s linear;
}
#send:hover{
    transform: scale(1.02);
    cursor: pointer;
}
#send:active{
    transform: scale(0.95);
    cursor: pointer;
}
::placeholder {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1; /* Firefox */
  }
  
  ::-ms-input-placeholder { /* Edge 12 -18 */
    color: rgba(255, 255, 255, 0.8);
  }