.modal {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: scale(1.1);
        transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    }
    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 1rem 1.5rem;
        width: 24rem;
        border-radius: 0.5rem;
    }
    .close-button {
        float: right;
        width: 1.5rem;
        line-height: 1.5rem;
        text-align: center;
        cursor: pointer;
        border-radius: 0.25rem;
        background-color: lightgray;
    }
    .close-button:hover {
        background-color: darkgray;
    }
    .show-modal {
        opacity: 1;
        visibility: visible;
        transform: scale(1.0);
        transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    }



.toot-card-catalog{
    width:100px;
    height:100px;
    font-size: 40px;
    float:left;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    margin: 0px;
}

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

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

}

.hide{
    display: none;
}

.toot-id{
    color:gray;
    margin-top:0px;
    font-size:12px;
}

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

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

}

.toot-icon {
    margin-top:15px;
    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{
    width:100px;
    height:100px;
}

.toot-card-catalogx {
    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: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

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

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

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

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

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

.toot-card {
    cursor: pointer;
    text-align:center;
}


.toot-fade {
    height:300px;
        width:300px;
}

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

    100% {
        background-color: white;
    }
}
