@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/* Base Text Elements */
h1 {
  font-size: 100px;
  font-family: Rubik, sans-serif;
  text-align: center;
  padding: 10px;
  margin: 10px;
}

h2 {
  font-size: 50px;
  font-family: Rubik, sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

h3 {
  font-size: 25px;
  font-family: Rubik, sans-serif;
  line-height: 2.0;
  text-align: center;
}

h4 {
  font-size: 20px;
  font-family: Rubik, sans-serif;
  font-weight: normal;
  line-height: 2.0;
  text-align: center;
}

p {
  font-size: 18px;
  font-family: Rubik, sans-serif;
  text-align: center;
  margin: 10px;
}

a {
  font-size: 20px;
  font-family: Rubik, sans-serif;
  text-align: center;
  margin: 10px;
}

/* List Elements */
li {
  font-size: 16px;
  font-family: Rubik, sans-serif;
  line-height: 2.0;
}

/* Asset Elements */
img {
  width: 80%; 
  height: 100%;
  object-fit: cover;
  max-width: 1000px;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  scrollbar-width: none;
}

div {
  padding: 10px;
}

/* Div */
div.container {
  padding: 20px;
  text-align: center;
}

div.flex-container {
  padding: 20px;
  text-align: center;
}

/* Classes */
.numbers {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-items: center;
}


/* Header Title */
.header {
  padding: 40px;
  text-align: center;
  margin:30px;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #D0DAEE
}

#svg-container {
    width: 50%;
    max-width: 1000px;
    padding: 20px;
}

.tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid pink;
  padding: 10px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}