/* Reset styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Body styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    font-weight: bold;
    background-image: url(index.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    
   







/* Navigation styles */
nav {
    background-color: #333;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    text-shadow: 2px 1px 1px;
    color: rgb(197, 54, 54);

}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff7f50;
}

/* Heading styles */
h1 {
    margin-top: 20px;
    text-align: center;
    color: #ff0000;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Paragraph styles */
p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 18px;
    color: rgba(0, 137, 250, 0.788);
    font-weight: bold;
}

/* Image styles */
img {
    float: right;
    width: 400px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    img {
        width: 100%;
        float: none;
        margin: 10px 0;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}


/* Image styles */
img {
    float: right;
    width: 400px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation-name: slide-in;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: linear;
    animation-direction: alternate;
}

@keyframes slide-in {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Body styles */

