/* General Styles */
:root {
  --red: tomato;
  --bgColor: bisque;
  --themeBlue: #1caade; /* Theme blue color */
  --themeYellow: #f4cc24; /* Theme yellow color */
  --themeGrey: #555555; /* Theme grey color */
}

body {
  font-family: "Raleway", Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%; /* Adjust to desired width */
  margin: 0 ; /* Center the container */
  overflow: hidden;
}

/* Miscellaneous Styles */
.acton {
  color: var(--themeBlue);
}

.gas {
  color: var(--themeYellow);
}

.title {
  color: var(--themeBlue);
  font-size: 16px;
}
