/* colors:
BLUE: #1B99E8
RED: #D61043
YELLOW: #FFE33B
*/

body {
    margin: 0px;
    font-family: "Museo Slab 300";
    color: black;
    font-size: 13px;
}

body a {
    cursor: pointer;
    color: #1B99E8;
}

body a:hover {
    color: #D61043;
}

.pointer {
    cursor: pointer;
}

.landing-page {
    background: #13BFF7;
    text-align: center;
    height: 100vh;
}

.landing-page .landing-text {
    position: absolute;
    top: 50%;
    transform: translateY(-75%);
    width: 100%;
    font-family: Sansarah Regular;
    color: white;
}

.header {
    background: #13BFF7;
    text-align: center;
    font-family: Sansarah Regular;
    padding-top: 8px;
}

.header a {
    text-decoration: none;
    color: white;
    font-size: 75px;
}

.header a .subtext {
    font-size: 30px;
}

.tiles {
    text-align: center;
}

.tile {
    background: #CCC;
    width: 45vw;
    height: 45vw;
    margin: 20px 15px;
    color: white;
    display: inline-block;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    cursor: pointer;
}

.tt-top {
    padding: 20px 0px;
    font-size: 40px;
}

.tt-mid {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 100px;
}

.tt-bot {
    position: absolute;
    bottom: 0px;
    padding: 20px 0px;
    width: 100%;
    font-size: 40px;
}

.tt-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
}

.foot-menu {
    width: 100%;
    text-align: center;
    background: white;
    position: fixed;
    top: 100vh;
    transform: translateY(-100%);
    border-top: 2px solid black;
    padding: 20px;
}

.mobile .foot-menu {
    top: 92vh;
}

.fm-elem {
    width: 23vw;
    font-size: 70px;
    display: inline-block;
}

.fm-elem .sub {
    font-size: 23px;
    padding-top: 10px;
}

.fm-elem.active {
    color: #E40000;
}

@keyframes burst {
    from {
        background-image: radial-gradient(circle at center, white 0%, transparent 0%);
    }
    10% {
        background-image: radial-gradient(circle at center, white 10%, transparent 10%);
    }
    20% {
        background-image: radial-gradient(circle at center, white 20%, transparent 20%);
    }
    30% {
        background-image: radial-gradient(circle at center, white 30%, transparent 30%);
    }
    40% {
        background-image: radial-gradient(circle at center, white 40%, transparent 40%);
    }
    50% {
        background-image: radial-gradient(circle at center, white 50%, transparent 50%);
    }
    60% {
        background-image: radial-gradient(circle at center, white 60%, transparent 60%);
    }
    70% {
        background-image: radial-gradient(circle at center, white 70%, transparent 70%);
    }
    80% {
        background-image: radial-gradient(circle at center, white 80%, transparent 80%);
    }
    90% {
        background-image: radial-gradient(circle at center, white 90%, transparent 90%);
    }
    to {
        background-image: radial-gradient(circle at center, white 100%, transparent 100%);
    }
}

.tile.bursting {
    animation: burst 0.2s ease-out;
}

.tile.bursting .tt-mid {
    color: black;
}



