/* General styling */

.ubuntu-sans-<uniquifier> {
  font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;

}

/* Header styling */
nav {
    background-color: #90EE90;
    color: #fff;
    padding: 14px 16px;
    text-align: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.logo {
        width: 40px; /* Adjust the logo size as needed */
        height: 40px; /* Adjust the height as needed */
        background-size: contain; /* Scale the image to fit the container */
        background-repeat: no-repeat; /* Prevent repetition */
        margin-right: 10px;
        max-height: 40px; /* Adjust the height as needed */
        max-width: 100%; /* Allow the width to adjust proportionally */
}

/* Section styling */
.section {
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button styling */
.btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.btn:hover {
    background-color: #0056b3;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar {
    background-color: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    left: -250px; /* Hide the sidebar initially */
    width: 250px;
    height: 100%;
    transition: left 0.3s ease;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
}

.show-sidebar {
    left: 0;
}

/* Article styling */
.article-container {
    height: 100vh;
    padding: 20px;
    color: #ffffff;
    text-align: center; /* Center text horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    background-color: rgba(0, 0, 0, 0.7); /* Darken the background */
    position: relative;
    -webkit-backface-visibility: hidden;
}

.article-container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/Bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1; /* Place it behind the content */
}

.article-container h1 {
    font-size: 24px;
    font-weight: bold;
}

.article-container p {
    font-size: 16px;
    line-height: 1.5;
}

/* General styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    margin: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Article section styling */
section {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

section p {
    font-size: 16px;
    line-height: 1.5;
}

/* Call-to-action button */
.cta-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}


.redirect-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
 }

/* Footer styling */

.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    height: 100px; /* Adjust as needed */
    margin-top: auto;
}


/* Social Icons (all rights go to the original owners) */

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 5px; /* Rounded square corners */
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    font-size: 0; /* Hide any text content inside the link */
}

.twitter {
    background-image: url("https://nosstos.github.io/images/social icons/X_logo.png");
}

.github {
    background-image: url("https://nosstos.github.io/images/social icons/github.png");
}
code {
    color: #90ee90;
}
