html{
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    height: 100%;
}

body{
    margin: 0;
    background: url("shared/background.jpg");
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color:#f9f7f2;
}

h1{
    font-family: "Recoleta", serif;
    text-align: center;
    padding-top: 5%;
    font-size: 105px;
}

h2{  
    font-family: "Recoleta", serif;
    font-weight: 200;
    font-size: 32px;
    text-align: center;
}

p, a{
    font-family: Inter, serif;
    color:#f9f7f2;
}

#instagram{
    position: fixed;
    font-size: 32px;
    bottom: 40px;
    left: 40px;
    margin: 0;
}

/* if width is less than 600px change bg and font size */
@media (max-width: 600px) {
    
    body {
        background: url("shared/kaffi_mobile.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #instagram{
        position: fixed;
        font-size: 18px;
        top: 75%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}