/* styles.css */


/* Reset default margin and padding */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('sha.jpg');
    background-size: cover;
    font-family: Arial, sans-serif;
}


/* Header styles */

header {
    background-color: #521d1d8a;
    color: #fff;
}

.navbar {
    padding: 20px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
}

.nav-li {
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    background-color: #e50914;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-content button:hover {
    background-color: #ff000000;
}

.nav-links li {
    display: inline;
    margin-right: 5px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
}

.nav-links button {
    background-color: rgb(92, 49, 49);
    text-size: 5em;
}


/* Hero section styles */

.hero {
    /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-content button {
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    background-color: #e50914;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-content button:hover {
    background-color: #ff000000;
}

p {
    color: #fff
}


/* More styles for other sections and footer... */