/* === universal === */

:root {
    --bg: #150a18;
    --el: #1f1f1f;
    --purp: #CD8EFF;
    --lpurp: #edb1dc;
    --lime: #00ff99;
}

* {
    gap: 0;
    margin: 0;

    transition: all 0.1s;
}

body {
    color: #fff;
    background-color: var(--bg);

    font-weight: bold;
    font-family: 'Magistral', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

/* - header - */

.top {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
}

header {
    width: 300px;
    padding: 20px;
    display: flex;
    margin-left: 20px;

    .semistudios {
        gap: 5px;
        display: flex;
        align-items: center;
    }

    img {
        width: 25px;
    }
}

nav {
    gap: 70px;
    display: flex;
    grid-column: 2;
    margin: 20px 0 0 0;

    font-size: 150%;

    a {
        padding: 10px;
    }

    a:hover {
        color: var(--lpurp);
        transform: translateY(2px);
    }

    .active {
        text-decoration: underline var(--lime);
    }
    .active:hover {
        transform: translateY(0);
    }
}

/* - footer - */

.footerline {
    width: 70%;
    display: flex;
    margin-top: 300px;
    justify-self: center;
    border-color: #ccc;
}

footer {
    display: flex;
    align-items: center;
    flex-direction: column;

    .copyright {
        color: #aaa;
        margin-top: 50px;
    }

    .footerlinks {
        color: #aaa;

        gap: 20px;
        display: flex;
        margin: 20px 0 50px 0;

        a:hover {
            color: #ccc;
            text-decoration: underline;
        }
    }
}

.footergrid {
    gap: 600px;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr;

    margin-top: 100px;

    .semidashstudios {
        display: flex;
        align-items: center;
        flex-direction: column;

        img {
            width: 300px;
        }
    }

    .categories {
        gap: 10px;
        display: flex;
        align-items: center;
        flex-direction: column;

        a {
            color: #ccc;
            font-size: 130%;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
    }
}

/* === homepage === */

.homepage {
    margin-top: 100px;

    .play {
        display: flex;
        align-items: center;
        flex-direction: column;

        .cards {
            gap: 50px;
            display: flex;
            margin-top: 20px;
        }

        h1 {
            font-size: 500%;

            background: -webkit-linear-gradient(left, var(--purp), #0fabff);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
        }

        .card {
            width: 350px;
            height: 50px;
            padding: 20px;

            gap: 30px;
            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 120%;

            border: 1px solid #2f2f2f;
            border-radius: 20px;
        }

        .card:hover {
            transform: scale(103%);
        }

        #tamarincard {
            background-color: var(--purp);

            img {
                width: 70px;
                margin-top: 20px;
            }
        }

        #dccard {
            background-color: #0fabff;

            img {
                width: 60px;
                border-radius: 30%;
            }
        }
    }

    .homecards {
        gap: 50px;
        display: grid;
        justify-content: center;
        grid-template-columns: auto auto;
        margin-top: 550px;

        .card {
            background: linear-gradient(90deg, #22003f, #22053f);

            width: 500px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid #aaa;

            h2 {
                padding: 20px;
                margin-right: auto;

                background: -webkit-linear-gradient(left, var(--purp), #0fabff);
                -webkit-text-fill-color: transparent;
                -webkit-background-clip: text;
            }

            h1 {
                margin-left: auto;
                margin-right: 20px;
                rotate: 90deg;

                background: -webkit-linear-gradient(left, var(--purp), #0fabff);
                -webkit-text-fill-color: transparent;
                -webkit-background-clip: text;
            }
        }
    }
}

/* == privacy policy page === */

.privacy-policy {
    .title {
        display: flex;
        font-size: 500%;
        margin-top: 100px;
        justify-self: center;
    }

    .policy {
        margin: 100px 290px 0 290px;
    }
}

/* === coc page === */