.p-spacing {
    margin: 10px 0;
}

.moth-container {
    image-rendering: pixelated;
    display: grid;
    place-items: center;
    padding-top: 20px;
}

.moth-img {
    image-rendering: pixelated;
    width: 200px;
}

.header {
    display: flex;
    column-gap: 20px;
}

.gibb-img {
    width: 200px;
    height: 200px;
    border: 3px dashed var(--beige);
    image-rendering: pixelated;
}

.title {
    margin-top: 20px;
}

.blurb {
    margin-top: 10px;
    margin-bottom: 0;
}

.hobby-list {
    padding-left: 30px;
}

.half-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 20px;
    row-gap: 10px;
    height: 300px;
}

.status {
    background-image: url(/img/forest.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px dashed var(--beige);
    padding: 20px;
    overflow-y: auto;
    grid-row: 1 / 3;
    image-rendering: pixelated;
}

.status-list {
    margin-top: 20px;
}

.status-list-item {
    background-color: #795136;
    padding: 10px;
    border: 2px solid #4e3422;
    border-radius: 5px;
    margin-bottom: 10px;
}

.status-list-item-title {
    font-size: 14px;
}

.status-list-item-time {
    margin-top: 5px;
    font-size: 12px;
}

.flag {
    font-size: 20px;
    margin: 0 auto;
}

.word-of-the-day {
    background-image: url(/img/campfire.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    image-rendering: pixelated;
    border: 5px dashed var(--beige);
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    grid-row: 1;
}

.word-of-the-day h3 {
    text-decoration: underline;
}

.word-of-the-day h3, .word-of-the-day .word {
    text-shadow: #000000 0 0 5px;
}

/* Basic Blink Animation */
@keyframes blink-basic {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.word-of-the-day .word {
    margin-top: 20px;
    animation: blink-basic 1s steps(1, end) infinite;
    color: blue;
}

.socials {
    background-image: url(/img/big_bin.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    image-rendering: pixelated;
    border: 5px dashed var(--beige);
    padding: 20px;
    grid-row: 2;
}

.social-links {
    display: flex;
    margin-top: 20px;
    column-gap: 10px;
}

.social-link a {
    text-decoration: none;
    display: block;
    width: 88px;
    height: 31px;
}
