/* =========================
   HOME PAGE
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    background:
        
        url("../sprites/bkg1.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
}

/* Main content */

.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0px 24px 80px;
}

.site-content {
    width: 100%;
    max-width: 1000px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    transform: translateY(-100px);
}

.logo {
    width: min(900px, 90vw);

    filter:
        drop-shadow(0 0 20px rgba(46, 188, 255, 0.45))
        drop-shadow(0 0 40px rgba(255, 107, 214, 0.25));

    user-select: none;
    pointer-events: none;
}

/* Mobile */

@media (max-width: 700px) {
    .timmy-main {
        padding: 100px 18px 60px;
    }

    .timmy-logo {
        width: min(720px, 96vw);
    }
}