body {
    margin: 0;
    background-color: rgb(161, 179, 184);
    color: rgb(18, 18, 18);
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

/* Home Page */
.menu {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: black;
}

.menu-links {
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;

}

.title {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin: 10px;
}

.content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 800px));
    justify-content: center;
}

.text-container {
    margin: 20px;
    padding: 10px;
    border-style: solid;
    border-radius: 10px;
}

.text-container .header {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.text-container .text {
    display: flex;
    justify-content: center;
}






/* Heros */

.hero-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

}

.hero-container {
    display: flex;
    background-color: rgb(110, 110, 110);
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 10px;
    margin: 10px;
}

.hero-img img {
    height: 200px;
    width: auto;
    border-style: groove;
    border-width: 2px;
    border-color: gold;
    border-radius: 10px;
}

.hero-right {
    margin: 5px;
}

.hero-name {
    font-size: 20px;
    font-weight: bold;
}


/* NPCs */

.npc-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 500px));

}

.npc-container {
    display: flex;
    background-color: rgb(110, 110, 110);
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 10px;
    margin: 10px;
}

.npc-img img {
    height: 150px;
    width: auto;
    border-style: groove;
    border-width: 2px;
    border-color: gold;
    border-radius: 10px;
}

.npc-right {
    margin: 5px;
}

.npc-name {
    font-size: 20px;
    font-weight: bold;
}

.npc-poster {
    display: flex;
    justify-content: space-evenly;
}

.npc-image img {
    width: 500px;
    height: auto;
    border-style: double;
    border-color: gold;
}



/* Quests */



.quest-list {
    border-style: solid;
    min-width: 300px;
    max-width: 800px;
    margin: 20px;
    margin-left: auto;
    margin-right: auto;
}

.quest-list .header {
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.quest-list .list div {
    display: flex;
    justify-content: center;
}

.quest-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 500px));
}

.quest-container {
    border-style: solid;
    margin: 10px;
}

.quest-container .header {
    font-weight: bold;
}


/* Log */



.log-container {
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 800px;
}

.log-container .header {
    display: flex;
    justify-content: center;
    font-weight: bold;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    padding: 5px;
}

.log-container .npc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 5px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

.npc-list a {
    padding: 10px;
}

.log-container .summary {
    justify-content: center;
    padding: 5px;
}