:root{
--background-color: white;
--font-color: black;
}

body {
    margin: 0 2rem 0 2rem;
    padding: 0;
    line-height: 1.6;
    color: #333;
    font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;


}

header {
    background: var(--background-color);
    color: var(--font-color);
    text-align: center;
    padding: 1rem 0;
}

.header-container {
    margin: 1rem 0;
    text-align: center;
    display: flex;
    align-items: center; /* Vertically align items in the center */
    gap: 1rem; /* Space between the image and the text */
    flex-direction: column;
}

.header-container img {
    width: 200px; /* Adjust the logo size */
    height: auto;
    display: block;
    margin: 0 0 2px 0;
}
.img_test {
    width: 150px; /* Adjust the logo size */
    height: auto;
    display: block;
}
.header-text {
    display: flex;
    flex-direction: column; /* Stack text elements vertically */
    align-items: center; /* Center align text below the image */
    text-align: center; /* Center-align the text content */
}
.header-text h1 {
    margin: 0.5rem 0 0; /* Add space above the name */
    font-size: 1.5rem; /* Adjust the font size */
}

.header-text p {
    margin: 0;
    font-size: 1rem;
    color: #555; /* Optional: Subtle text color for the description */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: var(--background-color);
    border: 1px solid #000000;
    border-left: none;
    border-right: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--font-color);
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 2rem;
   
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

h2 {
    color: var(--font-color);
}

.portfolio-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    flex: 1 1 calc(33% - 2rem);
    box-sizing: border-box;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    flex: 1;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-top: 1rem;
}

form input, form textarea, form button {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

form button {
    background: #23292f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #23292f;
    color: white;
}

