/* ========================================
   GRUND
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}


/* ========================================
   BAKGRUND
======================================== */

body {
    min-height: 100vh;
    min-height: 100dvh;

    background:
        radial-gradient(
            ellipse at 50% 45%,
            #181818 0%,
            #101010 45%,
            #080808 100%
        );

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
}


/* ========================================
   FRAMSIDA
======================================== */

.frontpage {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
}


/* ========================================
   MAT-GENERATOR
======================================== */

.food-generator {
    text-align: center;
}


/* ========================================
   RUBRIK
======================================== */

.title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;

    letter-spacing: -2px;

    cursor: pointer;
    user-select: none;

    transition: opacity 0.2s ease;
}

.title:hover {
    opacity: 0.7;
}


/* ========================================
   MATRÄTT
======================================== */

.food-name {
    margin-top: 25px;

    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;

    letter-spacing: 1px;
}