/*Copyright by Haxtar Soliterax 2015 - 2022*/
@keyframes soldan{
	0%{
		bottom: -50px;
	}

	10%{
		bottom: -45px;
	}

	20%{
		bottom: -40px;
	}

	30%{
		bottom: -35px;
	}

	40%{
		bottom: -30px;
	}

	50%{
		bottom: -25px;
	}

	60%{
		bottom: -20px;
	}

	70%{
		bottom: -15px;
	}

	80%{
		bottom: -10px;
	}

	90%{
		bottom: -5px;
	}

	100%{
		bottom: 0px;
	}
}

footer {
	position: relative;
	justify-content: space-between;
	align-items: center;
	padding: 10px 1%;
	margin: 20px 2%;
	background-color: #1c1c1c;
	border-bottom-right-radius: 40px;
	border-bottom-left-radius: 40px;
	animation-name: alttan;
	animation-duration: 1s;
}

.Footer-Content {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #1c1c1c;
}

.Footer-Content .Copyright_Icon {
	cursor: default;
	width: 30px;
	height: 30px;
	background-color: #1c1c1c;

}

.Footer-Content .Copyright_Text {
	cursor: default;
	margin: 0px 0px 0px 10px;
	color: #edf0f1;
	background-color: #1c1c1c;
}

.Footer-Content .Mail {
	position: absolute;
	right: 80px;
	color: #24ED48;
	background-color: #1c1c1c;
}

.Footer-Content .Icon {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 40px;
	background-color: #1c1c1c;

}
@media (max-width: 768px) {
    .Footer-Content {
        flex-direction: column;
        text-align: center;
    }

    .Footer-Content .Mail,
    .Footer-Content .Icon {
        position: relative;
        right: auto;
        margin-top: 10px;
    }
}
@media (max-width: 468px) {
    .Footer-Content {
        flex-direction: column;
        padding: 5px;
    }

    .Footer-Content .Mail {
        font-size: 12px; /* Küçük ekranda yazılar daha küçük olsun */
    }

    .Footer-Content .Icon {
        width: 20px;
        height: 20px;
    }
}

