*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
}

body{
    font-family: sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #131827;
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: baseline;
    align-items: baseline;
    flex-direction: column;
}

.todo_wrapp{
    width: 25%;
    height: 100vh;
    background-color: #ffffff;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper{
    width: 80%;
    height: 70%;
    overflow-x: hidden;
    overflow-y: auto;
}

.wrapper::-webkit-scrollbar{
    background-color: transparent;
    width: 5px;
}

.wrapper::-webkit-scrollbar-thumb{
    background-color: #dc1e3e;

}

#joueur{
    margin-top: 20px;
}

.todo_name{
    width: 80%;
    height: 60px;
    margin: 20px 0;
    padding-left: 20px;
    border: 3px solid #dc1e3e;
    font-size: 20px;
    border-radius: 2px;
}

.add_todo, .clear{
    width: 80%;
    margin: 5px 0;
    height: 60px;
    display: inline-block;
    background-color: #dc1e3e;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    border-radius: 2px;
}

.add_todo:hover, .clear:hover{
    background-color: #ef4754;
}

.item{
    width: 97%;
    height: 50px;
    background-color: #131827;
    color: #fff;
    margin: 10px 0;
    display: flex;
    align-items: center;
    padding-left: 10px;
    position: relative;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.040);
    font-size: 20px;
    border-radius: 2px;
}

.delete{
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.team{
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    margin: 0 0;
    display: flex;
    justify-content: center;
    align-items: start;
    overflow-x: hidden;
    overflow-y: hidden;
}

.makeTeam{
    width: 300px;
    height: 60px;
    background-color: #dc1e3e;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 2px;
    border: none;
    margin-top: 10%;
    z-index: 10;
}

.team1{
    position: absolute;
    top: 0;
    left: 20%;
    width: 75%;
    height: 100vh;
    margin: 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-right: 1.5%;
}

.team2{
    position: absolute;
    top: 0;
    right: -35%;
    width: 75%;
    height: 100vh;
    margin: 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-right: 1.5%;
}

.box{
    width: 30%;
    background-color: #dc1e3e;
    color: #fff;
    font-size: 20px;
    height: 50px;
    border: none;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}