/* V-Shaped Development Model CSS with Transparency */

body {
    font-family: 'Verdana', sans-serif;
    background: linear-gradient(270deg, #f5f5dc, #8b0000);
    background-size: 200% 200%;
    animation: gradientWave 36s infinite ease-in-out; 
    color: #222;
    margin: 20px;
    padding: 20px;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


h1 {
    color: #8b0000;
    text-align: center;
    font-size: 2.5em;
}


p {
    font-size: 18px;
    line-height: 1.6;
    color: #222; 
}

ol {
    background-color: rgba(255, 248, 220, 0.8); 
    padding: 15px 15px 15px 40px;
    border-left: 5px solid #8b0000;
    list-style-position: outside;
    color: #222; 
}

ol li {
    margin-bottom: 15px;
}

img {
    max-width: 45%;
    display: inline-block;
    margin: 20px 0;
    margin-right: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.8);
}

th, td {
    border: 1px solid #8b0000; 
    padding: 10px;
    text-align: left;
}

th {
    background-color: #8b0000;
    color: white;
}

td {
    background-color: rgba(245, 245, 220, 0.8); 
    color: #222;
}

.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.back-button:hover {
    background-color: #555;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #8b0000; 
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-top:hover {
    background-color: #a52a2a;
}
