body {
    padding: 0;
    margin: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

/* initial la schermata */

#start-container
{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

    background-color: black;

    position: absolute;
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 9999;
}

#start-symbol 
{
    text-align: center;
    font-size: xx-large;
    color: white;
    pointer-events: none;
    animation: fadeInOut 2s ease-in-out infinite;
}

#start-symbol 
{
    text-align: center;
    font-size: xx-large;
    color: white;
    pointer-events: none;
    animation: fadeInOut 2s ease-in-out infinite;
}

#start-text 
{
    text-align: center;
    font-size: medium;
    color: white;
    pointer-events: none;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

button {
    padding: 1rem;
    margin: 1rem;
    border: 2px solid gray;
    border-radius: 5px;;
    background-color: transparent;
}

#bottoniera {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

    background-color: transparent;

    position: absolute;
    justify-content: center;
    display: flex;
    align-items: center;
}