/* #region BASIC FONT AND COLOR SETUP */
p, a, li{
    font-family: 'Electrolize', sans-serif;
    color: white;
}

#nav-list a {
    color: white;
    display: inline-block;
    text-decoration: none;
}

#nav-list a.selected {
    color: gray;
}

h1, h2, h3 {
    font-family: 'Jacquard 24', sans-serif;
    font-size: 2.5em;
    color: white;
    margin-block-start: 10px;
    margin-block-end: 10px;
}

#header-title {
    font-size: 3em; 
    color: white;
}
/* #endregion */

.columns {
    display: flex;
    width: 100%;
}

/* Styling for the header */
header {
    background-color: #679ac4a3;
    border: rgba(86, 159, 255, 0.5) 4px outset;
    border-radius: 15px;
    text-align: center;
    color: white;
    padding: 10px;
    margin-bottom: 5px;
}

/* Styling for the entire body */
body {
    background-image: url('../images/Image-bloodborne-screen-36d.webp');
    background-size: cover;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 1500px;
}
/* Styling for the aside elements */
aside {
    border: rgba(86, 159, 255, 0.5) 4px outset;
    border-radius: 15px;
    padding: 10px;
    background-color: #679ac4a3;
}

/* Styling for the main content area */
main {
    border: rgba(86, 159, 255, 0.5) 4px outset;
    border-radius: 15px;
    padding: 10px;
    background-color: #679ac4a3;
    flex-grow: 1;
    margin-left: 5px;
    margin-right: 5px;
}

/* layout for the 'aside-game' centered stack */
.aside-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.aside-game .game-cover {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.aside-game .game-desc {
    max-width: 220px;
}
