body {
    font-family: 'Anonymous Pro', monospace;
    font-size: 32px;
    margin: 0px;
}

.toot-create {
    font-size: 24px;
}

.toot-message {
    clear: both;
    font-size: 24px;

}


.detail-link-container {
    margin-top: -10px;
    text-align: right;
    font-size: 24px;
}

.toot-message-h1 {
    font-size: 20px;

}

.toot-icon {
    font-size: 32px;

}

.toot-card-single {
    cursor: pointer;
    text-align: center;
    float: left;
    font-size: 32px;
    margin-top: 10px;
    width: 65%;
}

.plain-link-white {
    text-decoration: none;
    color: white;
}

.plain-link-white:visited {
    text-decoration: none;
    color: white;
}

.plain-link-white:hover {
    text-decoration: none;
    color: white;
}

.plain-link-white:focus {
    text-decoration: none;
    color: white;
}

.plain-link-white:hover {
    text-decoration: none;
    color: white
}

.plain-link-white:active {
    text-decoration: none;
    color: white
}

.plain-link {
    text-decoration: none;
    color: black
}

.plain-link:visited {
    text-decoration: none;
    color: black;
}

.plain-link:hover {
    text-decoration: none;
    color: black;
}

.plain-link:focus {
    text-decoration: none;
    color: black;
}

.plain-link:hover {
    text-decoration: none;
    color: black
}

.plain-link:active {
    text-decoration: none;
    color: black
}

.left {
    float: left;
    font-size: 60px;
}

.right {
    float: right;
    font-size: 60px;
}

.toot-nav {
    display: inline-block;
    width: 200px;
}

.toot-wrapper {
    text-align: center;
}

.toot-card-catalog {
    background-color: white;
    padding: 5px;
    margin: 0 0 0.5em;
    width: 100%;
    font-size: 20px;
    text-align: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
    box-sizing: border-box;
    break-inside: avoid-column;
}

.toot-card-wrapper-single {
    padding: 10px;
    margin-top:4px;
}

.toot-header {
    background: #232f34;
    font-size: 32px;
    text-align: center;
    padding-top:2px;
    padding-bottom: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.toot-content {
    min-height: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.toot-content-flex {
    margin-top: 0.5em;
    column-count: 1;
    column-gap: 0.5em;
    margin-bottom: 1.0em;
}

@media (min-width: 650px) {
    .toot-content-flex {
        column-count: 2;
    }
}

@media (min-width: 950px) {
    .toot-content-flex {
        column-count: 3;
    }
}

.toot-footer {
    font-size: 16px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
}

.toot-card {
    cursor: pointer;
}


.toot-fade {
    animation: fadeInOut 1s linear forwards;
}

@keyframes fadeInOut {
    0% {
        background-color: yellow;
    }

    100% {
        background-color: white;
    }
}