/* ========================================
   GRUNDSTIL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========================================
   HTML
   Alltid svart bakom hela sidan
======================================== */

html {
    width: 100%;
    min-height: 100%;

    background-color: #000000;
}


/* ========================================
   SIDAN
======================================== */

body {
    width: 100%;

    min-height: 100vh;
    min-height: 100dvh;

    background-color: #000000;

    background-image:
        radial-gradient(
            ellipse at 50% 10%,
            #090909 0%,
            #050505 45%,
            #020202 75%,
            #000000 100%
        );

    background-repeat: no-repeat;
    background-size: 100% 100%;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}


/* ========================================
   DÖLJ ELEMENT
======================================== */

.hidden {
    display: none !important;
}


/* ========================================
   FRONTPAGE
   VISAS BARA NÄR MAN ÄR UTLOGGAD
======================================== */

.frontpage {
    width: 100%;

    min-height: 100vh;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 40px;
}


/* ========================================
   NOTAN LOGO
======================================== */

.logo {
    color: #ffffff;

    font-size: 80px;
    font-weight: 700;

    letter-spacing: 12px;

    white-space: nowrap;
}


/* ========================================
   BETYG PREVIEW
======================================== */

.rating-preview {
    width: 300px;

    margin-top: 50px;
}


/* ========================================
   BETYG RAD
======================================== */

.rating-row {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    font-weight: 400;

    letter-spacing: 2px;
}


/* ========================================
   STJÄRNOR
======================================== */

.stars {
    color: #f5c451;

    font-size: 17px;
    font-weight: 400;

    letter-spacing: 3px;
}


/* ========================================
   TAGLINE
======================================== */

.tagline {
    margin-top: 32px;

    color: rgba(255, 255, 255, 0.32);

    font-size: 12px;
    font-weight: 400;

    letter-spacing: 1.2px;
}


/* ========================================
   MOBIL
======================================== */

@media (max-width: 600px) {


    /* ====================================
       SIDAN
    ==================================== */

    body {
        min-height: 100vh;
        min-height: 100dvh;

        background-color: #000000;
    }


    /* ====================================
       FRONTPAGE
    ==================================== */

    .frontpage {
        width: 100%;

        min-height: 100vh;
        min-height: 100dvh;

        padding-top: 110px;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }


    /* ====================================
       NOTAN
    ==================================== */

    .logo {
        font-size: 48px;

        letter-spacing: 6px;

        white-space: nowrap;

        margin: 0;
    }


    /* ====================================
       BETYG
    ==================================== */

    .rating-preview {
        width: calc(100% - 80px);
        max-width: 300px;

        margin-top: 42px;
    }


    .rating-row {
        padding: 12px 0;

        font-size: 10px;

        letter-spacing: 1.8px;
    }


    /* ====================================
       STJÄRNOR
    ==================================== */

    .stars {
        font-size: 16px;

        letter-spacing: 3px;
    }


    /* ====================================
       TAGLINE
    ==================================== */

    .tagline {
        margin-top: 28px;

        font-size: 11px;

        letter-spacing: 1px;
    }

}