body {
    margin: 0;
    overflow: hidden;
    background-color: black;
}

canvas {
    display: block;
    background-color: black;
    z-index: 0;
    pointer-events: none;
}

.container{
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 50;

    color: black;
    text-decoration: none;
}

#centratutto{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;

}

.square {
    display: none;
    position: absolute;
    height: 70%;
    width: 70%;
    background-color: rgb(0, 0, 0);
    /* border-radius: 1rem; */
    box-shadow: 0 0 1rem rgb(2, 2, 2);

    align-items: center;
    justify-content: center;

}

#centered-text {
    margin: 0.5rem;
    text-align: left;
    color: white;
    text-shadow: 0 0 0.1rem rgba(32, 31, 31, 0.611);
    overflow: scroll;
}

#skip-button{
    font-size: 3rem;
    color: white;
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: black;
    text-shadow: 0 0 0.1rem rgb(243, 243, 243);
}

#info-button{
    font-size: 3rem;
    color: white;
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: black;
    cursor: pointer;
    text-shadow: 0 0 0.1rem rgb(243, 243, 243);
}

.start
{
    z-index: 9999; /*sempre davanti a tutto*/
}

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

    background-color: black;

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

#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;
}

#link {
    color: white;
    text-decoration: underline;
}

/*inutile ma bello*/
@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.noUnderline {
    text-decoration: none;
}