﻿body {
    margin: 0;
    padding: 0;
}

@keyframes loading {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

h1 {
    font-weight: 500;
    font-size: 1.6rem;
    font-family: monospace;
    text-transform: uppercase;
    margin: 0;
    margin-top: 1px;
    padding: 18px;
    text-align: center;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

h1.animate {
    background: linear-gradient(60deg, #3b8bc133 25%, #ffffff 25%, #ffffff 50%, #3b8bc133 50%, #3b8bc133 75%, #ffffff 75%);
    background-size: 200% 100%;
    animation: loading 4s linear infinite reverse;
}

ul.tiles {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.tiles li {
    background-color: rgb(59 139 193 / 0.1);
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 30px 0 30px 30px;
    padding: 0;
    width: 200px;
    height: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

ul.tiles li:hover {
    transform: scale(1.05);
}

ul.tiles li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: monospace;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}
