@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter";
    font-weight: bold;
}


html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: rgb(255, 0, 0);
    overflow: hidden;
}

#nombreDeParticipant {
    position: absolute;
    height: 100%;
    width: 100%;

    background-color: #000000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    align-items: center;

    overflow: hidden;
    transition: .2s;

    z-index: 10000;
}

#nombreDeParticipant > input {
    background-color: #202020;
    border: none;
    outline: none !important;

    color: #ffffff;
    height: 75px;
    width: 200px;

    border-radius: 12px;

    text-align: center;
    font-size: 3rem;
}
#nombreDeParticipant > input:focus {
    outline: solid 2px white !important;
}
#nombreDeParticipant > div {
    background-color: #ffffff;
    border: none;
    outline: none !important;

    color: #000000;
    height: 75px;
    width: 200px;

    border-radius: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 2rem;

    border-bottom: solid 6px rgb(93, 93, 93);
    transition: .05s;
}
#nombreDeParticipant > div:active {
    border-bottom: none;
    border-top: solid 6px rgb(0, 0, 0);
}

#terrainDeJeu {
    height: 100%;
    width: 100%;
    background-color: #000000;

    color: #ffffff;


    overflow: hidden;
}

.rond {
    position: absolute;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.327);
    border: solid 20px white;
}
