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

* {
    box-sizing: border-box;
}

html {
    overflow: scroll;
}

body {
    background-color: #2b88f0;
    font-family: 'Muli', sans-serif;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    height: 100vh;
    overflow: hidden;
    margin: 2em;
}

.author {
    color: #fff;
    font-size: small;
    white-space: nowrap;
    /* font-family: inherit; */
}

h3 {
    color: #fff;
    margin: 1px 0 2px;
    text-align: center;
    padding-right: 23px;
}

.toggle {
    text-align:left;
}

.page-item {
    position: relative;
    height: 80%;
}

.slider {
    background: #f0932b;
}

.horizontal-container {
    position: relative;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-template-rows: auto auto;
}

.matrix-container {
    font-size: 14px;
    width: 10rem;
    height: auto;
}

.matrix {
    border: none;
    display: grid;
    width: 100%;
    height: 4rem;
    font-family: inherit;
    padding: 1px;
    margin: 0 0 25px;
    font-size: inherit;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
}

.vector-container {
    font-size: 14px;
    width: 6.5rem;
    height: auto;
}

.vector {
    border: none;
    display: grid;
    width: 100%;
    height: 4rem;
    font-family: inherit;
    padding: 1px;
    padding-left: 23px;
    margin: 0 5px 0;
    font-size: inherit;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
}

textarea {
    white-space: nowrap;  
    overflow: auto;
    border: none;
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
    font-family: inherit;
    padding: 1px;
    /* margin: 0 0 20px; */
    font-size: inherit;
    resize: none;
}

.field00 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.field01 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.field02 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}
.field10 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.field11 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.field12 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
.field20 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}
.field21 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}
.field22 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}


/* these are the little selections 
we created at the bottom of the
big text field that are each possible choice */
.tag {
    background-color: #f0932b;
    color: #fff;
    border-radius: 50px;
    padding: 3px;
    /* margin: 0 5px 10px 0; */
    font-size: px;
    display: inline-block
}

.tag.highlight {
    background-color: #270375;
}

.button {
    background-color: #f0932b;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    font-family: 'Muli', sans-serif;
}

.button:active {
    background-color: #be7521;
}

h4 {
    color: #fff;
    margin: 1px 0 2px;
    text-align: center;
}

/* Dropdown Button */
.dropbtn {
    background-color: #f0932b;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    font-size: 14px;
    display: inline-block;
    width: 100%;
}
  
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    align-items: center;
}
  
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color:inherit;
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
/* Links inside the dropdown */
.dropdown-content button {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
  /* Change color of dropdown links on hover */
  .dropdown-content button:hover {background-color:#be7521;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color:#be7521;}

/* .checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.checkbox > span {
    color: #34495E;
    padding: 0.5rem 0.25rem;
}

.checkbox > input {
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #34495E;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    background-color: #41B883;
    cursor: pointer;
  }

.checkbox > input:checked {
    border: 1px solid #41B883;
    background-color: #34495E;
}

.checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    color: #41B883;
    position: absolute;
    left: 0.7rem;
    top: 0.2rem;
}

.checkbox > input:active {
    border: 2px solid #34495E;
} */