@charset "UTF-8";

* {
    border: 0px;
    margin: 0px;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif;
    font-size: large;
    /* box-sizing: border-box; */
}

section {
    display: flex;
    /* justify-content: flex-start; */
    /* align-items: stretch; */
    width: 100%;
}

#istage {
    display: flex;
    width: 100%;
    min-height: 100vh;
    /* min-height: fill-available; */
    min-height: -webkit-fill-available;
    /*webkit impede de dar scroll para baixo*/
    background-color: aqua;
    border: 1px solid black;
    position: absolute;
    overflow: hidden;
}

.layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: flex-start; */
    width: 100%;
    background-color: lightgray;
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
    /* height: 15vh; */

}

input,
.num {
    width: 200px;
    height: 30px;
    border: 1px solid black;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

button {
    width: 200px;
    justify-content: center;
    margin: auto;
    margin-top: 8px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 10px;
    cursor: pointer;
}

.bola {
    position: absolute;
    border-radius: 100px;
}