*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
}

@font-face {
    font-family: 'storemedtegn'; /*a name to be used later*/
    src: url(FineschmekkaFontFerdy-Regular.otf) ; /*URL to font*/
}

img {
    width: 100%;
}

p {
    font-family: 'storemedtegn', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 1rem;
}

#tekst {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    font-size: 5rem;
    width: 100%;
}

#tlf {
    display: none;
}

@media (max-width: 1000px){
    #tekst {
        font-size: 3rem;
    }
    img {
        height: 100vh;
        width: auto;
        transform: translate(-20%);
        object-fit: cover;
    }

    #pc {
        display: none;
    }
    #tlf {
        display: block;
    }
}