
body {
    margin: 0;
    background: rgb(253, 239, 201);
    font-family: Arial, Helvetica, sans-serif;
}

.content {
    width: 90%;
    margin: 2rem auto;
    background: white;
    height: 40rem;
}

.heading {
    background: rgb(245, 212, 124);
}

.secondpart {
    display: flex;
}

.secondpart > div {
    background-color: rgb(218, 216, 196);
    margin: 1rem;
    padding: 1rem;
}

.aboutme {
    width: 40%;
}

.recentposts {
    width: 60%
}

.grid {
    display: grid;
    grid-template-columns: 3;
    grid-template-columns: auto auto auto;
}

.statnum, .titlestat{
    text-align: center;
}

.info p {
    display: inline;
    font-weight: bold;
    font-size: 1.5em;
}
.info img {
    border: 2px solid black;
    width: 5rem;
}
.info {
    padding: 1rem;
}

.levelproperties {
    top: 10px;
}

.header {
    padding: 0.5rem;
    background-color:rgb(245, 212, 124)
}

.header img {
    width: 15rem;
}

.buttonchoices {
    text-align: right;
    margin: 10px;
    width: 30%;
    float: right;
}

.buttonchoices img {
    width: 2rem;
}

@media screen and (max-width: 600px) {
    .grid {
        display: block;
    }
}