/* style.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    cursor: pointer;
}

h1 {
    font-size: 4rem;
    color: #333333;
    user-select: none;
    text-align: center;
}

#kaffekopp {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    display: none;
    user-select: none;
}

#kaffekopp.synlig {
    display: block;
}