/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #ffffff;
    line-height: 1.6;
    background-image: url('papi.png');
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #202020;
}

.logo a {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.search-bar {
    flex: 1;
    margin: 0 20px;
    text-align: center;
}

.search-bar input {
    width: 60%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #333;
    background-color: #1c1c1c;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

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

.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://example.com/hero-image.jpg') no-repeat center center/cover;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff9c12;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
}

footer {
    text-align:center;
    padding: 20px;
    background-color: #202020;
    color: #666666;
    margin-top: 250px;
}
