*{
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #222222;
}

.app_konteyner {
    background-color: #222222;
	min-height: 100vh;
	height: auto;
	position: relative;
	padding-bottom: 200px;
    padding: 10px;
    box-sizing: border-box;
}

.app_basliq {
	background-color: rgb(40, 100, 215);
	width: 60%;
	height: 40px;
	font-size: 16px;
	margin: 0 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: white;
	border: solid 1px white;
	border-radius: 5px;
	font-weight: 400;
}

.appText {
    background-color: #222222;
    color: white;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
}

.btnDiv {
    width: 100%;
    text-align: center;
}



.appLink {
    background-color: #222222;
    width: 80%;
    height: 50px;
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 0px 12px rgb(1, 161, 161);
    animation: boxShadowAnimation 7s 3 normal;
    cursor: pointer;
}

@keyframes boxShadowAnimation {
    0% {
        box-shadow: 0px 0px 10px yellowgreen;
    }
    25% {
        box-shadow: 0px 0px 10px red;
    }
    50% {
        box-shadow: 0px 0px 10px royalblue;
    }
    75% {
        box-shadow: 0px 0px 10px white;
    }
    100% {
        box-shadow: 0px 0px 10px yellowgreen;
    }
}

.sekilBasliq {
    color: white;
    font-size: 16px;
}

.sekil {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 150px;
    text-align: center;
}

.sekil img {
    width: 160px;
}






@media only screen and (min-width: 800px) {

    .app_konteyner {
        min-height: 150vh;
        height: auto;
        width: 1000px;
        float: none;
        border-radius: 20px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    
    .sekil {
        /* background-color: beige; */
        margin: 0px;
        border-radius: 5px;
        display: flex;
        justify-content: space-evenly;
    }

    .sekil img {
        width: 250px;
    }
    
    .appText {
        width: 94%;
        margin-left: 3%;
        font-size: 16px;
        padding: 5px;
        box-sizing: border-box;
    }

    .appLink {
        width: 350px;
        cursor: pointer;
    }



}