body{
    display: flex;
    flex-direction: column;
    align-items: center;

    background: linear-gradient(white,rgb(188, 249, 251));
    background-attachment: fixed;
}


#spaceForBox{
    min-height: 300px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#myBox{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    border: solid 2px;
    font-size: 13px;
    background-color: cadetblue;
    height: 150px;
    width: 150px;
    padding: 5px;
    
    animation: Animation infinite 3s linear;
}

#check{
    border: solid 1px;
    border-radius: 5px;
    background-color: rgb(233, 251, 255);
    margin: 10px;
    font-size: 22px;
}


@keyframes Animation {
    from{
    }
    to{
        transform: rotate3d(1,0,1,360deg);
    }
}
