techditto.com Ads.txt file
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>الموقع متوقف مؤقتاً</title>
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #332851;
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: 'Tajawal', sans-serif;
box-sizing: border-box;
}
.base {
width: 100%;
height: auto;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 1rem;
}
.base h1 {
text-transform: uppercase;
font-size: 8rem;
margin: 0;
color: #9ae1e2;
position: relative;
z-index: 0;
animation: colors 0.4s ease-in-out forwards;
animation-delay: 1.7s;
}
.base h1:before {
content: " ";
position: absolute;
top: -9%;
right: 40%;
transform: rotate(180deg);
font-size: 8rem;
color: #f6c667;
z-index: -1;
animation: lock 0.2s ease-in-out forwards;
animation-delay: 1.5s;
}
.base h2, .base h5 {
color: #B771E5;
margin: 0 0 1rem;
text-transform: uppercase;
animation: colors 0.4s ease-in-out forwards;
}
.base h2 {
font-size: 2rem;
}
.base h5 {
font-size: 1.2rem;
color: #9ae1e2;
opacity: 0;
animation: show 2s ease-in-out forwards;
animation-delay: 3s;
}
.contact-btn {
background-color: #25d366;
color: #fff;
padding: 0.7rem 1.5rem;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s ease;
animation: show 2s ease-in-out forwards;
animation-delay: 3.5s;
}
.contact-btn:hover {
background-color: #1da851;
}
@keyframes lock {
50% {
top: -4%;
}
100% {
top: -6%;
}
}
@keyframes colors {
50% {
transform: scale(1.1);
}
100% {
color: #9ae1e2;
}
}
@keyframes show {
100% {
opacity: 1;
}
}
@media (max-width: 768px) {
.base h1 {
font-size: 6rem;
}
.base h2 {
font-size: 1.8rem;
}
.base h5 {
font-size: 1rem;
}
.contact-btn {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.base h1 {
font-size: 4rem;
}
.base h2 {
font-size: 1.5rem;
}
.base h5 {
font-size: 0.9rem;
}
.contact-btn {
font-size: 0.8rem;
padding: 0.5rem 1rem;
}
}
</style>
</head>
<body>
<div class="base">
<h1 class="io">403</h1>
<h2>عذراً، الموقع متوقف مؤقتاً</h2>
<h5>نعتذر عن الإزعاج، لكن الموقع متوقف حالياً بسبب مشكلة تقنية نرجو منك الاتصال بنا في أسرع وقت ممكن.</h5>
<a href="https://wa.me/905340331000" target="_blank" class="contact-btn">واتساب</a>
</div>
</body>
</html>