* {
    padding: 0;
    margin: 0;
}
body {
    background-color: #44697D;
}

#outer {
    position: relative;
    padding: 10px 30px;
    margin: 0 auto;
}

#outer h1 {
  	position: absolute;
  	font-size: 30px;
  	color: #fff;
  	text-align: left;
    top:80px;
}

header {
    font-size: 30px;
  	color: #fff;
  	text-align: left;
}

#away-div {
    position: absolute;
    top: 100px;
    width: 500px;
    padding: 20px;
    background-color: #5B5765;
    border: 2px solid #000;
    box-sizing: border-box;
    min-height: 634px;
    color: #FFF;
}

#home-div {
    position: absolute;
    top: 100px;
    width: 500px;
    left: 560px;
    padding: 20px;
    background-color: #5e172d;
    border: 2px solid #000;
    box-sizing: border-box;
    min-height: 634px;
    color: #fff;
    overflow: visible;
}

.align-right {
    text-align: right;
}

/* Styles for form 'enter numbers'*/
#form_a_uni {
    position: absolute;
    left: 260px;
    top: 150px;
}

#form_h_uni {
    position: absolute;
    top: 150px;
}
.player_submit {
    width: 93px;
    height: 62px;
    flex-shrink: 0;
    border: 2px solid var(--Orange, #000);
    background: #D9D9D9;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .player_submit:hover {
    background-color: red;

  }

/* Styles for form 'player name buttons' */
#form_a_players {
    margin-left: 20px;
    margin-top: 10px;
    width: 260px;
}

#form_h_players {
    margin-top: 10px;
    margin-left: 260px;
    width: 260px;
}

.player_button {
    font-weight: bold;
    padding: 6px;
    background-color: rgba(0,0,0,0);
    width: 200px;
    color: #fff;
    margin-bottom: 5px;
}

.player_button:hover {
    background-color:red;
    color:white;
  } 

  /*styles for displaying the active player */
#a_player_name {
    position: absolute;
    left: 260px;
    color: white;
}

#h_player_name {
    position: absolute;
    left: 30px;
    color: white;
}

.player_name {
    top: 80px;
}
.player_name h2 {
    font-size: 24px;
}