*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    width: 100%;
    display: flex;
    justify-content: center;
}

.wrapper {
    margin: 10px;
    max-width: 400px;
}

.signals{
    display: flex;
    flex-wrap: wrap;
}

.long, .short{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    padding: 20px;
    border-radius: 20px;
    margin: 10px;
}
.long{
    background-color: rgb(142, 255, 142);
}
.short{
    background-color: rgb(255, 138, 138);
}

.pair{
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}
.body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.body .labels {
    border-right: 2px solid black;
}
.body .labels h1{
    font-size: 20px;
    font-weight: 700;
    text-align: right;
}

.body .labels h1:nth-child(1){
    border-bottom: 2px solid black;
}
.body .labels h1:nth-child(2){
    border-bottom: 2px solid black;
}
.body .values h1{
    font-size: 20px;
    font-weight: 400;
    text-align: right;
}

.body .values h1:nth-child(1){
    border-bottom: 2px solid black;
}
.body .values h1:nth-child(2){
    border-bottom: 2px solid black;
}