
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    height: fit-content;
    background-image: url('Images/back.jpg');
    background-size: cover;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e1e1e;
}

header a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8f8f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

header a:hover {
    color: #ff4081;
}

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

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #f8f8f8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff4081;
}

/* Dropdown list hidden initially */
.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-list li {
    padding: 10px;
    background-color: #f9f9f9;
    color: #333;
}

.dropdown-list li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-list li:hover {
    background-color: #eeeeee;
}

/* Show dropdown when hovering over "Planets" */
.dropdown:hover .dropdown-list {
    display: block;
}

/* Hero Section */
.hero {
    height: 200vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('hero-image.jpg') center/cover no-repeat;
}

.hero-content {
    text-align: center;
    height: 200vh;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #bbbbbb;
}

.cta-button {
    padding: 0.75rem 2rem;
    background-color: #ff4081;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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



#arictle1, #arictle2 {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
}
#arictle1 h1, #arictle2 h1 {
    font-size:40px;
    color: #ff4081;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    position: relative;
    top: -25px;
}
#img1, #img2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
#img1 img ,#img2 img {
    width: 450px;
    height: 300px;
    border-radius: 10px;
    margin: 10px;
    position: relative;
    top: -25px;
}


#arictle1 p, #arictle2 p {
    font-size: 25px;
    margin: 15px 50px 15px 60px;
    text-align: left;
    color: white;
    position: relative;
    top: -30px;
    left: 0;
    height: fit-content;
    width: 90%;
    font-family: sa;
    
}
#arictle2 {
    
    margin-top: 15px;
}

