:root {
  --clr-grey-1: #102a42;
  --clr-grey-10: #f1f5f8;
  /* primary/main color */
  --clr-primary-5: #49a6e9;
  --clr-primary-8: #a5d5f8;
  --clr-green-dark: #25bb32;
  --clr-green-light: #6be675;
  --clr-black: #222;
  --transition: all 0.3s linear;
  --spacing: 0.1rem;
  --radius: 0.25rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --clr-white: #fff;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--clr-grey-10);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}

.title {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.underline {
  width: 6rem;
  height: 0.25rem;
  background: var(--clr-primary-5);
  margin-left: auto;
  margin-right: auto;
}

.ip-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.srtbtn-container {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.srtbtn {
  margin: 0px 5px;
  font-size: smaller;
  /* letter-spacing: 1px; */
  border-color: white;
}

#viz-board {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#srt-status {
  width: 20%;
  /* color: white; */
  font-size: larger;
  align-self: flex-start;
  padding-top: 15px;
  /* padding-right: 5px; */
  text-align: right;
  letter-spacing: 0.5px;
}
#srt-info {
  width: 20%;
  /* color: white; */
  font-size: larger;
  align-self: flex-start;
  padding-top: 15px;
  text-align: center;
}
#mgsrt-info {
  font-size: 0.6em;
}
#array-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 5px;
  width: 54%;
  height: 525px;
  background: var(--clr-white);
  margin: 0 auto;
  /* margin-top: -200px; */
  border-radius: var(--radius);
  /* position: relative; */
  text-align: center;
  padding: 1.5rem;
  box-shadow: var(--dark-shadow);
}

#array-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  height: 130px;
  background: var(--clr-grey-10);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.bar {
  height: 1px;
  width: 7px;
  max-width: 30px;
  margin-left: 0.1%;
  color: white;
  text-align: center;
  overflow-x: hidden;
  padding: 1px;
  font-size: x-small;
  /* line-height: 10px;  */
  background-color: #2caeba;
  transition: 0.1s all ease-in;
}

.container {
  /* width: 90vw; */
  /* max-width: 730px; */
  background: var(--clr-white);
  margin: 0 auto;
  margin-top: -200px;
  border-radius: var(--radius);
  /* position: relative; */
  text-align: center;
  padding: 1.5rem;
  box-shadow: var(--dark-shadow);
}

