/*!*****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/menus.scss ***!
  \*****************************************************************************************************/
#menus {
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    background-color: aliceblue;
}

.label {
    margin-top: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: 500;
}

.dropdown-left {
    width: 200px;
    margin-left: 2cm;
}

.dropdown-right {
    width: 200px;
    margin-right: 2cm;
}

select {
    width: 100%;
    padding: 12px 12px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: 500;
    cursor: pointer;
}


/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/characteristics.scss ***!
  \***************************************************************************************************************/
#player-characteristics {
    display: flex;
    justify-content: space-between;
    background-color: lightblue;
    margin-left: 1cm;
    margin-right: 1cm;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.player-1 {
    margin-left: 1cm;
}

.player-2 {
    margin-right: 1cm;
}
/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/charts.scss ***!
  \******************************************************************************************************/
#canvas-container {
    display: flex;
    justify-content: center;
    height: 30%;
    width: 30%;
    margin: 0 auto;
}


/*!*****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/modal.scss ***!
  \*****************************************************************************************************/
.button {
    background: rgb(76, 12, 159);
    padding: 1em 2em;
    color: #fff;
    border: 0;
    margin-left: 25px;
    border-radius: 5px;
}

.button:hover {
    background: rgb(111, 27, 160);
    transition: 0.3s ease;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #f4f4f4;
    margin: 20% auto;
    width: 70%;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 7px 20px 0 rgba(0,0,0,0.16);
}

.modal-header h2 {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.modal-body {
    padding: 10px 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.modal-header {
    background: rgb(111, 27, 160);
    padding: 15px;
    color: white;
    text-align: center;
    justify-content: center;
   
}

.close-button {
    color: #ccc;
    float: right;
    font-size: 20px;
    color: white;
    align-items: center;
}

.close-button:hover, .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/header.scss ***!
  \******************************************************************************************************/
header {
    display: flex;
    background-color: #2f8eb4;
    justify-content: space-between;
    align-items: center;
    border-bottom: 6px solid #702fe1;
    height: 10%;
}

header h1 {
    font-size: 48px;
    font-family: 'Roboto', sans-serif;
    color: rgb(255, 255, 255);
    line-height: 2;
    margin-left: 20px;
    font-weight: 800;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}

header nav a {
    text-decoration: none;
    font-size: 40px;
    margin-left: 20px;
    color: rgb(255, 255, 255);
}

header nav a:hover {
    color: #702fe1;
    transition: 0.3s ease;
}
/*!*****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/reset.scss ***!
  \*****************************************************************************************************/
html, body, section, article,
h1, h2, h3, p, strong, em, a {
  margin: 0;
  border: 0;
  padding: 0;
  outline: 0;
  box-sizing: inherit;
  font: inherit;
  text-decoration: inherit;
  text-align: inherit;
  color: inherit;
  background: transparent;
  font-family: inherit;
}

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  /* text-decoration: underline; */
}

textarea {
  font-family: inherit;
  background: transparent;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
body {
  background-color: rgba(62, 138, 159, 0.202);
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
