body {
    margin: 0;
    font-family: Arial, sans-serif;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 0;
    z-index: 1000;
}
header nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}
header nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
header nav a:hover {
    background-color: #555;
    border-radius: 5px;
}
section {
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
}
#home { 
    background: rgb(65,14,61);
    background: radial-gradient(circle, rgba(65,14,61,1) 0%, rgba(15,55,83,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#about { 
    background: rgb(65,14,61);
    background: radial-gradient(circle, rgba(65,14,61,1) 0%, rgba(15,55,83,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#services { 
    background: rgb(65,14,61);
    background: radial-gradient(circle, rgba(65,14,61,1) 0%, rgba(15,55,83,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color:white;
}
#products {
    background: rgb(65,14,61);
    background: radial-gradient(circle, rgba(65,14,61,1) 0%, rgba(15,55,83,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#clients { 
    background: rgb(65,14,61);
    background: radial-gradient(circle, rgba(65,14,61,1) 0%, rgba(15,55,83,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#contact { 
    background: rgb(65,14,61);
    background: radial-gradient(circle, rgba(65,14,61,1) 0%, rgba(15,55,83,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
 }

 

 /* body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}
.container {
    display: flex;
    max-width: 900px;
    width: 90%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.left-column {
    flex: 1;
    background-color: #eee;
}
.left-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rectangle {
    flex: 1;
    background-color: #ddd;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.rectangle:first-child {
    margin-top: 0;
}
.rectangle:last-child {
    margin-bottom: 0;
}
.rectangle p {
    margin: 0;
    font-weight: bold;
    color: #333;
} */