* {
    box-sizing: border-box;
    margin: 0;
}

@font-face {
    font-family: 'Kiwisoda';
    src: url(fonts/KiwiSoda.ttf);
}

@font-face {
    font-family: 'dogica pixel';
    src: url(fonts/Pixelbasel.ttf);
}

body {
    background-color: #90ee90;
    background-image: url("obrazki/ezgif.com-webp-to-gif-converter.gif");
    background-repeat: repeat;
    font-family: "dogica pixel";
    color: rgb(140, 0, 158);
}

#content {
    margin: auto;
    margin-top: 10px;
    width: 1260px;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 43em 1fr;
    grid-template-rows: 9em 11em 6em 8em 3em 9em;
}

.box {
    background-color: #c7ffb1;
    border: 5px groove #58a0ff;
    border-radius: 5px;
    overflow-y: auto;
}


header {
    grid-area: 1 / 2 / 2 / 3;
    z-index: 1;
    margin: 0 auto;
}

.shoutbox {
    grid-area: 2 / 1 / 4 / 2;
    align-content: end;
}

.shoutbox iframe {
    overflow-y: scroll;
    overflow-x: hidden;
}


.status {
    grid-area: 2 / 3 / 3 / 4;
}

.links {
    grid-area: 6 / 1 / 7 / 2;
}

main {
    grid-area: 2 / 2 / 7 / 3;
}

.title {
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    margin-top: 30px;
    margin-bottom: 10px;
    color: rgb(72, 185, 255);
}

.pets {
    grid-area: 4 / 1 / 6 / 2;
}

.pets div {
    padding: 15px;
    display: flex;
}

.dragon-cave {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: end;
    gap: 10px;
}

.aside-gifs {
    grid-area: 3 / 3 / 5 / 4;
}


.webrings {
    grid-area: 5 / 3 / 7 / 4;
}

.webrings section {
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
}

footer {
    margin: 1em 0 1em 0;
    display: flex;
    justify-content: center;
}

h3 {
    font-size: 23px;
    font-family: "Kiwisoda";
    color: rgb(10, 27, 151);
    background-color: #8abdff;
    padding: 5px 0;
    text-align: center;
}

p,li,a {
    font-size: 18px;
}

h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
}


article {
    margin: 15px 20px;
}

.updates-log {
    display: flex;
    justify-content: center;
}

.up-log {

    border: 2px solid#58a0ff;
    background-color: #ecf7ff;
    overflow-y: auto;
    height: 10em;
    width: 28em;

    list-style-image: url(obrazki/SmallFlower.gif);
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
}

.up-log b {
    color: rgb(34, 0, 185);
}

