body {
    font-family: 'Arial', sans-serif;
    background-color: #008080; /* Teal background */
    color: #ff69b4; /* Hot Pink text */
    text-align: center;
}

.header {
    padding: 50px;
    background-color: #00ff00; /* Green header */
}

.header h1 {
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: blink 2s infinite;
}

.main {
    padding: 50px;
}

.services, .contact, .explanation {
    margin-bottom: 50px;
    background-color: #ff4500; /* Orange sections */
    padding: 20px;
    border-radius: 10px;
}

.services ul, .explanation p {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
}

.explanation h2 {
    color: #00ffff; /* Cyan text */
}

.contact form {
    text-align: left;
}

.contact label, .contact input {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.contact input[type="text"], .contact input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #000;
}

.contact input[type="submit"] {
    background-color: #ff69b4; /* Hot Pink submit button */
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact input[type="submit"]:hover {
    background-color: #ff1493; /* Darker pink on hover */
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 1.2em;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
#counter {
    font-size: 2em;
    color: #fff;
    background-color: #000;
    padding: 10px;
    border-radius: 5px;
}
/* Add this at the end of your existing CSS file (styles.css) */

@keyframes flyAcross {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

.fly-across {
    font-size: 2em;
    position: absolute;
    top: 50%;
    animation: flyAcross 5s linear infinite;
}
/* Add this to your existing CSS (styles.css) */

.designed-by {
    text-align: center;
    margin-top: 50px;
}

.designed-by p {
    font-size: 1.2em;
}

.designed-by img {
    max-width: 100px;
    margin-top: 10px;
}

