* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(137, 177, 205);
    background-image: url(dog-bone-blue-one.png);
    margin: 0;
    font-family: "Barriecito", system-ui;
}

header {
    color: white;
    padding: 25px;
    font-weight: bolder;
    background-color: rgba(0, 0, 0, 0.5);
    border: inset rgba(0, 0, 0, 0.7);
    margin-bottom: 70px;
    position: sticky;
    top: 0px;
}

nav {
    color: white;
    padding-left: 30px;
    text-align: right;
    font-size: 20px;
    float: right;
}

li a {
    color: white;
    font-family: "Barriecito", system-ui;
    padding: 5px;
}

li a:hover {
    color: grey;
    font-family: "Barriecito", system-ui;
}

section {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
    border: inset rgba(0, 0, 0, 0.3);
    padding-left: 20px;
    margin-bottom: 70px;;
    width: fit-content;
}

section p {
    font-family: 'Courier New', Courier, monospace;
}

strong {
    font-family: "Barriecito", system-ui;
    font-weight: bold;
}

.bold {
    font-weight: bold;
    font-family: "Barriecito", system-ui;
}

.inline {
    display: inline-block;
}

.release-date {
    color: darkgray;
    font-size: 12px;
}

footer{
    text-align: center;
    border: dashed rgba(0, 0, 0, 0.1);
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: rgb(0, 0, 0);
    position: sticky;
    bottom: 0px;
}