.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.grid-container div {
    background-color: burlywood;
    color: black;
    margin: 10px;
    text-align: center;
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
}

body {
    background-color: rgb(14, 14, 14);
    color: rgb(225, 225, 225);
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    text-align: center;
    color: burlywood;
    font-size: xx-large;
}

h3 {
    text-align: center;
    background-color: bisque;
    color: black;
    border-radius: 20px;
    font-size: x-large;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 2px;
    padding-right: 2px;
    border: 2px solid rgb(167, 121, 61);
}

ul {
    list-style-type: none;
}

a:active {
    background-color: rgb(96, 53, 31);
}

a:hover {
    color: aqua;
}

a:visited {
    color: darkorchid;
}


footer {
    text-align: center;
    font-size: xx-small;
}

nav ul li {
    height: 25px;
    width: 25px;
    padding: 10px;
    margin: 10px;
}

ul li:first-child {
    background-color: burlywood;
}

ul li:nth-child(even) {
    background-color: rgb(167, 121, 61);
}

ul li:last-child {
    background-color: rgb(157, 71, 9);
}

div:nth-of-type(even) {
    background-color: rgb(167, 121, 61);
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}