/* =========================
   GENERAL
   ========================= */

body {
    background-image: url("semiscapebg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    color: mintcream;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 14px;
    margin: 0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* =========================
   MAIN PAGE CONTAINER
   ========================= */

.container {
    background-color: darkslategray;
    width: 90%;
    max-width: 500px;
    margin: 50px auto 5px;
    padding: 0 30px;
    flex: 1;
    
    border: 3px double black;
    border-radius: 15px;
}

.index {
    text-align: center;
}
/* =========================
   HEADER
   ========================= */

header {
    font-family: "Trebuchet MS", sans-serif;
    color: peachpuff;
    padding: 30px 0;
    text-align: center;

}

header h1 {
    font-size: 18px;
    margin: 0;
}


/* =========================
   NAVIGATION
   ========================= */

nav {
    margin-top: 10px;
    text-align: center;
}

nav a {
    color: whitesmoke;
    text-decoration: none;

}

nav a:hover {
    text-decoration: underline;
}


/* =========================
   MAIN CONTENT
   ========================= */

main {
    padding: 10px 0;
}

h2 {
    margin-top: 0;
}

p {
    line-height: 1.6;
}

a {
    color: whitesmoke;
    text-decoration: none;
}

a:hover {
    color: cadetblue;
    text-decoration: underline;
}

/* =========================
   POEMS
   ========================= */

.poem {
    line-height: 1.3;
    margin: 20px 0;
}

.poem-title {
    text-decoration: underline;
    margin-bottom: 5px;
    font-size: 16px;
}


/* =========================
   FOOTER
   ========================= */

footer {
    width: 100%;
    text-align: center;
    font-size: 10px;
}