body {
    /* background-image: linear-gradient(90deg, #c69bac, #d3b1be); */
    background-image: url(IMG_9320.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
p {
    text-align: center;
}
h1, h2, h3 {
    margin-right: 50px;
    margin-left: 50px;
    text-align: center;
}
a {
    color: lightgray;
}
#statbar {
    height:25px;
    background-color: black;
    border: ridge 5px black;
    margin-right: 50px;
    margin-left: 40px;
    a {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px;
    }
}
.grid {
    display: grid;
    grid-template-areas:
    "a b"
    "a b"
    "c d";
    justify-content: center;
    gap: 20px;

}
.first {
    grid-area:a;
    background-color: black;
    border: ridge 5px black;
    color: lightgray;
}
.second {
    grid-area:b;
    background-color: black;
    border: ridge 5px black;
    color: lightgrey;
}
.third {
    grid-area:c;
    background-color: black;
    border: ridge 5px black;
    color: lightgrey;
}
.fourth {
    grid-area:d;
    background-color: black;
    border: ridge 5px black;
    color: lightgrey;
}
.box {
    width: 350px;
    text-align: center;
}
.grid2 {
    display: grid;
    grid-template-areas:
    "a b c"
    "a b c"
    "d d d";
    justify-content: center;
    gap: 30px;
}
