/* styles.css */

/* Global Styles */
body {
    /*background: #fcd6ca;*/
    background-image: url('../images/space.png');
    font-family: 'Courier New', monospace;
    color: #34f005;
    margin: 0;
    padding: 0;
    line-height: 0.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 2.5rem 0rem 0.5rem 0rem;
    text-align: center;
}

header h1 {
    margin: 0;
}

.header-link {
  color: inherit;
  text-decoration: none;
}

.header-link:hover {
  color: white;
  text-decoration: underline;
}

main {
    flex: 1;
    margin: 0 auto;
    line-height: normal;    
}

p {
  font-size: 1.5em;
  padding-left: .5em;
  margin-bottom: -.5em;
}

ul {
    font-size: 1.5em;
    list-style-type: none;
    padding: 0;
}

li {
    text-align: right;
}

ul li {
    margin: 0.5rem 0;
    margin-left: 40px
}

ul li a {
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
    }
}

