/* IMPORTS ----------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
}

/* CLASS DEFINITIONS ----------------- */
.classHigh {
  color: #ffffff;
  background-color: rgba(255, 0, 0, 0.5);
  font-weight: bold;
  border: 3px solid #df0000;
  border-radius: 5px;
}

.classRatherHigh {
  color: #000000;
  background-color: rgba(255, 153, 0, 0.5);
  font-weight: bold;
  border: 3px solid #ef8900;
  border-radius: 5px;
}

.classMedium {
  color: #000000;
  background-color: rgba(254, 204, 105, 0.5);
  font-weight: bold;
  border: 3px solid #eebc59;
  border-radius: 5px;
}

.classRatherLow {
  color: #000000;
  background-color: rgba(146, 209, 77, 0.5);
  font-weight: bold;
  border: 3px solid #82c13d;
  border-radius: 5px;
}

.classLow {
  color: #000000;
  background-color: rgba(10, 175, 80, 0.5);
  font-weight: bold;
  border: 3px solid #009f40;
  border-radius: 5px;
}

.classCritical {
  color: #ffffff;
  background-color: rgba(255, 0, 0, 0.8);
  font-weight: bold;
  border: 3px solid #ff0000;
  border-radius: 5px;
}

.classVeryLow {
  color: #000000;
  background-color: rgba(0, 123, 255, 0.5);
  font-weight: bold;
  border: 3px solid #007bff;
  border-radius: 5px;
}

/* LAYOUT STYLES --------------------- */
.risk {
  width: 400px;
  margin: 0 auto;
}

.riskChart {
  margin-bottom: 10px;
}

h1 {
  font-weight: bold;
}

section {
  padding: 10px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  padding: 0px;
  margin: 0;
  min-height: 100vh;
  font-size: 14px;
}

main {
  max-width: 1200px;
  margin: auto;
  width: 1200px;
  text-align: center;
}

/* MEDIA QUERIES ----------------------- */
@media screen and (max-width: 576px) {
  .row {
    flex-direction: column;
  }
}
