body {
    font-family: 'Bebas Neue', cursive;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #E6E6FA;
    padding: 40px; /* Increased padding for the header */
    text-align: right;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #404040; 
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #6a5094;
}

.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #967bb6;
}

.text {
    padding: 10px;
    text-align: left;
    max-width: 50%; 
}

.text h1 {
    font-family: 'Lato', sans-serif; 
    font-size: 30px; 
}

.text p {
    color: #18131d; 
    font-size: 20px; 
}

.image img {
    max-width: 60%;
    height: auto;
    float: right;
    margin-right: 100px;
}

.hire-button {
    background-color: #6a5094; 
    color: #fff;
    padding: 10px 20px; 
    font-size: 1.2em; 
    cursor: pointer;
    transition: background-color 0.3s;
}

.hire-button:hover {
    background-color: #7b62a8; 
}
