@import url(menu.css);
@import url(registro.css);
@import url(picks-table.css);
@import url(posiciones.css);
@import url(duelo.css);

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  min-height: 100vh; /* Footer stays on bottom */
  display: flex; /* Footer stays on bottom */
  flex-direction: column; /* Footer stays on bottom */
}

header {
  width: 100%;
  height: 80px; /* Logo height: 50px */
  background: #000000;
  color: #bbbbbb;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header img {
  float: left;
  margin-top: 15px;
}

.contenedor {
  width: 97%;
  margin: auto;
}

header .contenedor {
  display: table;
}

main {
  margin-top: 95px;
}

select {
  padding: 10px;
  text-align: center;
  background-color: #dedede;
  border-color: #000000;
  min-width: 20%;
  font-size: 16px;
  margin-bottom: 5px;
}

.button {
  border: none;
  color: #bbbbbb;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 15px;
  background-color: rgba(0, 0, 0, 1);
  min-width: 20%;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

footer {
    margin-top: auto;
    width: 100%;
    /*background-color: #122335;*/
    color: #828282;
    text-align: center;
    /*padding: 20px 0;*/
    /*font-size: 14px;*/
}

footer a {
  text-decoration: none;
}


.inicio {
  background-color: #000000;
  padding: 15px 0;
  font-size: 14px;
  color: #bbbbbb;
}

.inicio:hover {
  background-color: #323232;
}

.footer {
  background-color: #000000;
  padding: 15px 0;
  font-size: 14px;
}

.break {
  margin-top: 20px;
  line-height: 1.6;
}

.break a {
  color: #122335;
  text-decoration: none;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.contenedor-404 {
  width: 97%;
  margin: auto;
  text-align: center;
}

.table-picks {
  min-width: 30%;
}

.table-picks a {
  text-decoration: none;
  color: #000000;
}

.table-picks th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #000000;
  color: white;
  text-align: center;
  letter-spacing: 1.2px;
}

.table-picks td {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  border: 1px solid #000000;
  background-color: #d7d7d7;
  letter-spacing: 1.2px;
  font-weight: bold;

}




/* Mobile Version */
@media (max-width:1024px) {
  select {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .button-registro {
    width: 100%;
  }

  .table-picks {
    min-width: 100%;

  }

}
/* Mobile Version */
