*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
video{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
} 

.main{
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    flex-wrap: wrap;
}

.main .pic{
    flex: 1; 
    text-align: center;
    padding-top: 50px;
}
.main .pic img{
    width: 350px;
    
}
.main .text{
    flex: 2;
    min-width: 350px; 
    height: 100%;
}
.main.text img{
    max-width: 100%;
}

.myButton {
	box-shadow: 0px 1px 0px 0px #fff6af;
	background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
	background-color:#ffec64;
	border-radius:6px;
	border:1px solid #ffaa22;
	display:inline-block;
	cursor:pointer;
	color:#b37800;
	font-family:Arial;
	font-size:1.5rem;
	font-weight:bold;
	padding: 16px 50px;
	text-decoration:none;
    text-shadow:0px 1px 0px #ffee66;
    margin-top: 30px;
}
.myButton:hover {
	background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
	background-color:#ffab23;
}
.myButton:active {
	position:relative;
	top:1px;
}



.text-message{
    width: 100%;
    height: 100%; 
    background-color: rgba(255, 255, 255, 0.63);
    padding: 30px;
}
 



@media only screen and (max-width: 600px) {
    .main{
        width: 100%;
        height: auto;
        padding-bottom: 30px;
    }
    .main .pic{
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }
  }