/* styles.css */

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

header {
    /*background: #b668ed;*/
    /*background-image: url('../images/water.png');*/
    color: black;
    padding: 2.5rem 0rem 0.5rem 0rem;
    text-align: center;
}

header h1 {
    color: black;
    margin: 0;
}

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

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

main {
    flex: 1;
    margin: 0 auto
    
}

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

ul {
    font-size: 1.5em;
    list-style-type: none;
    padding-right: .5em;
}

li {
    text-align: right;
}

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

ul li a {
    color: #3242a8;
    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;
    }
}

