@import url('https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-size: larger;
    transition: all 0.3s ease-in-out;
}

canvas{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: none; /* opzionale, se non vuoi che il canvas intercetti i tocchi */
}

#refreshing{
    color: rgb(51, 51, 51);
}

.lexend-zetta {
    font-family: "Lexend Zetta", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h1{
    text-align: center;
}

.waiting{
    background-color: lightgray;
}

.fttc{
    background-color: goldenrod;
}

.ftth{
    background-color: limegreen;
}

.error{
    background-color: rgb(192, 78, 78);
}