/*Page style - sorted in alphabetical order*/

/*Balises*/
body
{
    background-color: darkgray;
    display: flex;
    justify-content: space-evenly;
    font-family: Arial, Helvetica, sans-serif;
}

button
{
    border-radius: 5px;
    border-width: 0px;
    cursor: pointer;
    margin: 5px;
    padding: 5px;
    width: 100px; height: 40px;
}

button:active
{
    font-size: small;
    position: relative;
    left: 2.5px; top: 2.5px;
    width: 95px; height: 35px;
}

button:focus
{
    outline: none;
}

h1
{
    display: block;
    min-width: 30px;
    padding: 10px;
    position: relative;
    z-index: 10;
}

input
{
    width: fit-content;
    max-width: 50px;
}

/*Classes*/
.counter
{
    background-color: lightgrey;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
}

.period
{
    margin: 5px;
}

/*IDs*/
#buttons
{
    padding: 10px;
    width: fit-content;
}

#clear
{
    background-color: tomato;
}

#counters
{
    position: relative;
    right: 0%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 375px;
}

#space
{
    background-color: black;
    height: 500px;
}

#fictive, #fictiveBis
{
    display: none;
}

#interface
{
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    min-width: 510px;
    padding: 10px;
    position: absolute;
    left: 15%; top: 100px;
    width: 60%; height: fit-content;
}

#play
{
    background-color: teal;
}

#select, #periods
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 375px;
}

#stop
{
    background-color: gold;
}