:root {
  --background-color: #2b2e33;
  --input-background-color: #1e1e1e;
  --font-scale-first-column: 1rem;
  --font-scale-symbols: 2rem;
  --font-scale-first-column-mobile: 1rem;
  --font-scale-symbols-moile: 1.5rem;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--background-color);
  color: white;
  font-size: var(--font-scale);
  height: auto;
}

.comparison-table {
  border-collapse: collapse;
  margin: 15px 0;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 10px;
  /* padding-top: 8px; */
  /* padding-bottom: 8px; */
  text-align: center;
}

.comparison-table th {
  /* background-color: #f2f2f2; */
  font-weight: bold;
}

.div-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* 
.comparison-table th img {
  max-width: 400px;
  height: auto;
} */

.comparison-table img {
  /* width: 400px; */
  max-width: 100%;
  height: auto;
}

.comparison-table img:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
}

td {
  font-size: var(--font-scale-symbols);
}

td:first-child {
  font-size: var(--font-scale-first-column);
}

#comparison-table-mobile {
  display: none;
}

a {
  color: rgb(141, 255, 184);
}

/* MEDIA QUERIES */
@media (max-width: 1450px) {
  #comparison-table-mobile {
    display: block;
  }

  #comparison-table-desktop {
    display: none;
  }
}

@media (max-width: 40em) {
  td {
    font-size: var(--font-scale-symbols-moile);
  }

  td:first-child {
    font-size: var(--font-scale-first-column-mobile);
  }
}
