/* Start Global Rules */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');
:root {
	--main-color: #0075ff;
	--text-color: #000;
	--backgound-color: #fff;
	--main-transition: 2s;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
body {
    height: 100vh;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    background-image: url(../image/backgound.png);
}
body::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to top, #fff 40%, rgb(255, 255, 255, 0.6));
}
/* End Global Rules */
/* Start Header */
.content {
    width: 500px;
    position: relative;
    z-index: 10000;
}
.content .image {
    width: 100%;
    margin-bottom: 100px;
    position: relative;
}
.content .image  i{
    display: block;
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-color);

}
.content .image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    opacity: 0.8;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    z-index: -1;
    animation-name: up-and-down-one;
    animation-duration: var(--main-transition);
    animation-iteration-count: infinite;
}
.content .image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    opacity: 0.5;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    z-index: -2;
    animation-name: up-and-down-two;
    animation-duration: var(--main-transition);
    animation-iteration-count: infinite;
}
.content .text {
    width: 100%;
    text-align: center;
}
.content h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.7;
    color: var(--text-color);
}
.content .but {
    width: 100%;
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.content .but button {
    border: none;
    border-radius: 999999px;
    width: 250px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
}
.content .but button.btn-1 {
    background-color: var(--text-color);
    color: var(--backgound-color);
}
.content .but button.btn-1 a {
    color: var(--backgound-color);
}
.content .but button.btn-2 {
    width: 200px;
    background-color: var(--backgound-color);
    color: var(--text-color);
    border: 3px solid var(--text-color);
}
.content .but button.btn-2 a {
    color: var(--text-color);
}
@media (max-width: 767px) {
    .content {
        width: 300px;
    }
    .content h2 {
        font-size: 30px;
    }
    .content .but {
        flex-direction: column;
        height: 120px;
        justify-content: space-between;
    }
    .content .but button.btn-1 {
        width: 200px;
    }
}
/* End Header */
/* Start Animation */
@keyframes up-and-down-one {
    to {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}
@keyframes up-and-down-two {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}
/* End Animation */
