/* Common styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    /* Background image */
    background-image: url('/Images/plenio_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Navigation styles */
nav {
    background: linear-gradient(to bottom, #16171aec, #0b226982);
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav h1 {
    color: #fff;
    margin-left: 60px;
    font-size: 1.7em;
    font-family: 'Kefa', Bold, serif;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 30px; /* Adjusted padding for the text */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li:last-child a {
    margin-right: 40px; /* Adjusted margin for the last link */
}

nav ul li a:hover {
    background-color: #555;
}


/* Interactive elements */
.interactive-element {
    display: inline-block;
    margin: 20px;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.interactive-element:hover {
    background-color: #555;
}
