/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


#logo {
  width:  200px ;
  height: 200px;
  display: block;
}
header {
  display: flex;
}

nav ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  background: #833AB4;
  justify-content:  center;
}
/*Styling Navbar links*/
.nav-link{
  
  /* Text Styling */
  text-decoration: none;  
  color: white;
  font-size:  34px;
  font-family:  Georgia;
  margin: 0 0px;
  background: linear-gradient(0deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  border: 2px solid black;
  display:  block;
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}



/* style.css */

body { 
    font-family: 'Courier New', monospace; 
    background-image: url("/assets/Space Background 2.png"); 
    background-size: cover;
    padding: 20px;
}

#features-list {
    max-width: 600px;
    margin: 0 auto; /* Centers the box */
    border: 2px solid #000;
    padding: 20px;
    background: #f4f4f4;
    /* Brutalist hard shadow */
    box-shadow: 5px 5px 0 #000; 
}

#features-list h2 {
    margin-top: 0;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.feature-item {
    padding: 15px;
    border: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    margin-bottom: 10px;
    /* Tiny interaction animation */
    transition: transform 0.1s;
}

.feature-item:hover {
    transform: translateX(2px) translateY(-2px);
    box-shadow: 2px 2px 0 #ccc;
}

.status-badge {
    font-size: 0.75em;
    padding: 4px 8px;
    background: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
main {
  background-color: antiquewhite;
  padding:  50px;
  margin: 100px;
  border: solid 3px black;
  font-size: 24px;
}