.challenge {
text-align: center;
font-size: 2.5rem;
color: gold;
position: relative;
width: -moz-fit-content;
width: fit-content;
margin: 0 auto;
}
.challenge::before {
content: "";
background-color: #195db9;
position: absolute;
top: 50%;
right: -40px;
width: 40px;
height: 4px;
rotate: -60deg;
}
.challenge::after {
content: "";
background-color: #195db9;
position: absolute;
top: 50%;
left: -40px;
width: 40px;
height: 4px;
rotate: 60deg;
}
.compare {
position: relative;
}
@media screen and (max-width: 650px) {
.compare {
overflow: scroll;
}
}
.compare .red {
color: red;
font-size: 2rem;
}
.compare .red-cir {
font-size: 5rem;
color: red;
font-weight: bold;
}
.compare .blue-x {
font-size: 5rem;
color: #195db9;
font-weight: bold;
}
.compare .green-tri {
font-size: 5rem;
color: green;
font-weight: bold;
}
.compare .blue-box {
position: absolute;
top: 60px;
left: 252px;
width: 205px;
height: 505px;
border: 8px solid #195db9;
}
@media screen and (max-width: 650px) {
.compare .blue-box {
left: 158px;
}
}
.compare table {
min-width: 700px;
font-size: 1.6rem;
line-height: 3rem;
border-spacing: 16px;
border-collapse: separate;
font-weight: bold;
text-align: center;
}
.compare table span {
font-size: 1rem;
}
.compare table thead {
color: #fff;
font-size: 2rem;
}
.compare table thead tr th {
background-color: rgba(204, 204, 204, 0.8);
text-align: center;
padding: 10px 0;
border-radius: 10px;
}
.compare table thead tr th:first-child {
background-color: #fff;
max-width: 125px;
}
.compare table thead tr th:nth-child(2) {
width: 205px;
font-size: 3rem;
border-radius: 10px;
background-color: #195db9;
}
.compare table tbody tr td {
border-bottom: 2px solid #ccc;
}
.compare table tbody tr td:nth-child(2) {
font-weight: 900;
}