@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
    --background-gradient: linear-gradient(30deg, #f39c12 30%, #f1c40f);
    --gray: #34495e;
    --darkgray: #064E3B;
}

.container {
    display: flex;
    flex-direction: column;
    width: 375px;
    margin: auto;
    padding-top: 20px;
}

body {
    text-align: center;
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: 'Share Tech Mono', monospace;
    margin: 0px;
}

h2 {
    font-size: 1em;
    min-width: 124px;
}

.matchDay {
    font-family: 'Share Tech Mono', monospace;
}

#resultText {
    font-size: 2em;
    font-weight: bold;
}

.selection {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 2rem;
    flex: 1 2;
    /* justify-content: space-evenly; */
}

#myRange {
    margin: 20px;
}

#teamSelect {
    margin: 20px;
}

.btn1 {
    margin: 10px;
    /* padding: 20px; */
    width: 100px;
    height: 50px;

    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    background-color: black;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 16px;
    border-bottom: 4px solid #2b6cb0;
    font-weight: 700;
    color: white;
    line-height: 26px;
}


.btn2 {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    background-color: white;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    border: 1px solid #cbd5e0;
    line-height: 26px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
}

.playButtons {
    display: flex;
    justify-content: center;
}

select {
    /* Reset Select */
    appearance: none;
    outline: 1;
    border: 1px solid black;
    outline-color: black;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 1em 1em;
    color: black;
    background-color: white;
    background-image: none;
    cursor: pointer;
    border-radius: 4px;

  }
  /* Remove IE arrow */
  select::-ms-expand {
    display: none;
  }
  /* Custom Select wrapper */
  .select {
    position: relative;
    display: flex;
    /* width: 20em;
    height: 3em; */
    border-radius: .25em;
    overflow: hidden;
  }