@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #1a1a1a; */
    /* background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%); */
    background-image: url('https://img.freepik.com/free-photo/abstract-textured-backgound_1258-30471.jpg?size=626&ext=jpg&ga=GA1.1.2015866067.1713899871&semt=ais');
    /* background-size: cover;
    background-repeat: no-repeat; 
    background-position: center;  */
    color: #fff;
    line-height: 1.6;
}

/* Header Styles */
header {
    /* background-color: #333;
    color: #fff; */
    background: linear-gradient(135deg, #333, #183596); /* Gradient background */
    color: #fff;
    padding: 10px 20px; /* Increased padding for better spacing */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 28px;
    font-weight: 600;
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #555;
}

/* Main Content Styles */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1#docker-compose-experiment-steps {
    text-align: center;
    margin-bottom: 40px;
}

/* author box style */
.author-box {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.author-image {
    flex: 0 0 150px;
    margin-right: 30px;
}

.author-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.author-description {
    flex: 1;
}

.author-description h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.author-description p {
    margin-bottom: 10px;
}

/* ------------------------------------------------------------------------------------------------- */

.step {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.step h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step p {
    margin-bottom: 20px;
}

.step pre {
    background-color: #1f6ae3;
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
}

.step img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.step a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #333, #1a1a1a); /* Gradient background */
    color: #fff;
    padding: 30px 20px; /* Increased padding for better spacing */
    text-align: center;
    border-top: 2px solid #555; /* A border to separate the footer from the main content */
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between elements */
}

.footer-content p {
    margin: 0; /* Remove default margin */
    font-size: 16px; /* Adjust font size */
}
