@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* General styles */
header {
    background-color: #000000;
    font-size: 30px;
    color: white;
    border-radius: 20px;
    height: 50px;
    width: 95%; 
    position: relative;
    top: 0; 
    left: 0; 
    right: 0; 
    margin: 0 auto; 
    padding: 10px 20px; 
    transition: background-color 0.5s; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-button {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-left: 20px;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9); /* 90% opacity for background */
}

.home-button {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'inter', sans-serif; /* Apply the imported font */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
}

footer {
    background-color: #232323;
    color: rgb(190, 190, 190);
    padding-left: 10px;
    left: 0;
    right: 0;
    position: relative;
    height: 70px;
    text-align: center;
    padding-top: 15px;
    margin-top: auto;
}

img { /* Targeting the image within the <main> tag */
    max-width: 100%; /* Ensures the image never overflows its parent container */
    height: auto;    /* Maintains the image's aspect ratio */
    display: block;  /* Removes extra space below the image, treating it as a block element */
    margin-left: auto; /* Centers the image if it's smaller than the container */
    margin-right: auto;
    border-radius: 50px;
}

.toolbar_radius {
    max-width: 95%;
    height: auto; 
    display: block;
    margin-right: auto;
    border-radius: 20px;
}

.window_size_change {
    width: 600px;
    height: 500px;
    margin-right: auto;
    border-radius: 20px;
}

h6 {
    font-size: 10px;
    margin-top: 20px;
    right: -820px;
    top: 90px;
    position: relative;
}

.textBox {
    background-color: None;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}

.textBox2 {
    background-color: None;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}

.textBox3 {
    background-color: None;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
}

.textBox4 {
    background-color: None;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
}

.textBox5 {
    background-color: None;
    padding: 10px;
    margin: 10px;
    text-align: center;
}

.textBox6 {
    background-color: None;
    padding: 10px;
    margin: 10px;
    font-size: 50px;
    text-align: center;
}

.no-bullets {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 10px; /* Adjust margin */
}

.no-bullets li {
    margin-bottom: 5px; /* Add some space between list items */
}

.center-image {
    display: block;
    margin-left: -280px;
    margin-right: 0px;
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}

.content {
        background-color: #2b2b2b;
        margin: 0;
        padding: 0;
        color: white;
        font-family: 'inter', sans-serif; /* Apply the imported font */
        display: flex;
        flex-direction: column;
        min-height: 200px;
}

.textbox {
    width: 100%;
    height: 500px;
    background-color: #171717;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
    color: white;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: #424242; 
}
.toolbar-buttons-left {
    display: flex;
    gap: 8px;
}
.toolbar-buttons-right {
    display: flex;
    gap: 8px;
}

.toolbar button {
    background-color: transparent;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    transition: opacity 0.2s;
}

.toolbar button:hover {
    opacity: 0.7;
}

.home-button{
    color: white;
    text-decoration: none;
}
 .nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background-color: #333;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}

.textBox7 {
    background-color: None;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 60px;
}



/* General button styling */
.button {
    display: inline-block; /* Makes it act like a block but sit side-by-side */
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px; /* Slightly rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 200px; /* Ensure buttons have a minimum width */
}

.button:hover {
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Primary button (e.g., for macOS) */
.primary-button {
    background-color: #007bff; /* A nice blue */
    color: white;
    border: 2px solid #007bff;
}

.primary-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Secondary button (e.g., for Windows) */
.secondary-button {
    background-color: #007bff; /* A nice blue */
    color: white;
    border: 2px solid #007bff;
}

.secondary-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* For the container of buttons */
.download-buttons {
    display: flex; /* Arranges buttons in a row */
    flex-wrap: wrap; /* Allows buttons to wrap to the next line on smaller screens */
    justify-content: center; /* Centers buttons horizontally */
    gap: 20px; /* Space between buttons */
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Small text for notes */
.small-text {
    font-size: 0.9em;
    color: #ccc; /* Lighter color */
    text-align: center;
    margin-top: 15px;
}