@charset "utf-8";
/* CSS Document */

@viewport {
    orientation: landscape;  
}

@media screen and (orientation: portrait) {
    #massage_rotate {
        display: block; 
    }
}

/* For landscape, we want the tool bar stick on the left */

@media screen and (orientation: landscape) {
    #massage_rotate {
        display: none; 
    }
}






#massage_rotate {
	position: fixed;
	width: 200%;
	height: 200%;
	top: 0;
	left: 0;
	background-color: #035B8B;
}

#massage_rotate > img {
	position: fixed;
	width: 80vmin;
	height: 80vmin;
	left: calc(50% - 40vmin);
	top: calc(50% - 40vmin);
	opacity: 0;
	animation: rotate-phone;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

#massage_rotate > img:nth-child(2) {
	animation-delay: 1.5s;
}


@keyframes rotate-phone {
	0% {
		opacity: 0;
		transform: rotate(0deg);
	}
	10% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: rotate(-90deg);
	}
	100% {
		opacity: 0;
		transform: rotate(-90deg);
	}
}











a:hover{text-decoration: none;}
body {
    margin: 0px;
    height: 100vh;
    direction: rtl;
    background-image: url("../images/Background_game2.jpg");
    background-size: cover;
    /*overflow: hidden;*/
    font-family: 'Rubik', sans-serif;
}

.diagonal-decoration2 {
    position: fixed;
    right: 0;
    bottom: 0;
    height: 25vh;
}



.edit-btn {
    width: 7vh;
    height: 7vh;
    position: absolute;
    bottom: 2.5vh;
    left: 2.5vh;
    border-radius: 50%;
    color: #536920;
    font-size: 4vh;
    background-color: #bec1a3;
    border: 0;
    cursor: pointer;
    opacity: 0.3;
    text-align: center;
}

.edit-btn i {
    line-height: 7vh;
}

.edit-btn:hover {
    opacity: 1;
}

.edit-btn:active {
    opacity: 0.8;
}




h1{
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 50px;
    color: #536920;
    text-align: center;
    margin-bottom: 5px;
}

h2{
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #536920;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 25px;
}

h3{
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-top: 5px;
    padding: 10px;
}