.title {
    font-stretch: extra-condensed;
    line-height: 10%;
    text-align-last: center;
    justify-content: center;
    background-color: #c8b388;
    padding: 20px;
    padding-bottom: 5px;
    border-radius: 10px;
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    margin-bottom: 20px;
    border: 5px dashed brown;
    font-weight: bold;
}

.poem {
    line-height: 80%;
    background-color: bisque;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    display: block;
    border: 2px dashed brown;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    font-family: "Zeyada", cursive;
}

a {
    color: sandybrown;
}

a:hover {
    color: brown;
}

.poemslist {
    line-height: 20px;
    background-color: #ffe0a8;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
    border: 3px dashed brown;
    margin-bottom: 10px;
}

.poemslist a {
    color: saddlebrown;
}

body {
    font-family: "Zeyada", cursive;
    font-weight: 400;
    font-size: x-large;
    background-color: antiquewhite;
    color: saddlebrown;
}

.bakurl {
    color: coral;
}

.index:any-link {
    color: #00aa00;
    font-family: monospace;
    font-size: medium;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
    background-color: black;
    border-radius: 20%;
    background: radial-gradient(#030, #000);
    padding: 10px;
}

.poemsLink {
    background-color: #676053;
    padding: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-radius: 20%;
    font-size: medium;
}

@-webkit-keyframes glow {
    from {
        text-shadow:
            0 0 0.5px #16ff14,
            0 0 0.6px #9fff9e,
            0 0 0.7px #005100,
            0 0 0.8px #005100,
            0 0 0.9px #005100,
            0 0 1px #005100,
            0 0 1.1px #005100;
    }
    to {
        text-shadow:
            0 0 0.6px #03ff00,
            0 0 0.7px #00ae22,
            0 0 0.8px #00ae22,
            0 0 0.9px #00ae22,
            0 0 1px #00ae22,
            0 0 1.1px #00ae22,
            0 0 1.2px #00ae22;
    }
}