body{
    background-color: aquamarine;
}

#hindo{
    height: 200px;
    width: 200px;
    background-color: yellow;
    position: relative;
    margin: 0  auto;
    top:  300px;
    left: 650px;
    
}

#vliegtuig_text{
    position: relative;
    top: 50px;
    left: 35px;

}

#vliegtuig {
    height: 100px;
    width: 200px;
    position: relative;
    margin: 0 auto;
    animation: vliegtuig 15s infinite;
   
 

}

#B1 {
   height: 25px;
    width: 125px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    margin: 0 auto;
    top:  45px;
    left: 30px;
}

#B2{
    width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 55px solid white;
    position: absolute;
    top:  -8px;
    left: 30px;
}

#B3 {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 75px solid #ffffff;
    position: absolute;
    top: -10px;
    left: 80px;

}

#B4 {
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 20px solid transparent;
	border-top: 60px solid #ffffff;
    position: absolute;
    top:  70px;
    left: 80px;
    
}

#B5 {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-left: 15px solid white;
	border-bottom: 12px solid transparent;
    position: absolute;
    top: 44px;
    left: 154px;
    
}




@keyframes vliegtuig{
    0%{left: -1000px;}
    25%{top: -150px;}
    50%{top: -150px;}
    100%{left: 1000px;}
}