.heading {
	color: #2196f3;
}

.smallHeading {
  position: fixed;
  left: 55px;
  top: -10px;
}

.centered {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.bottomLeft {
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 18px;
}

.bottomRight {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 18px;
}

html {
  /* background-image: url('/images/tennis-1938928_1920.jpg'); */
  min-height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card {
  background-color: white;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}

.cardSubtitle{
  margin-left: 20px;
}

#matchCodeTextField {
  width: 100%;
}


iframe {
  margin-top: 20px;
}

#addButton {
  margin: 2px;
  float: right;
}


/**

Navigation Style

**/



/**


Footer


**/

/** 


Media Queries


**/

@media screen and (min-width: 500px){
  .card {
    width: 450px;
  }
}

@media screen and (max-width: 1025px){
  .mainContent {
    margin-top: 50px;
  }
}



/* Hide the link that should open and close the topnav on small screens */

@media screen and (max-width: 400px) {

}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {

}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {

}
/** add margins to the right and left when screen is 800px wide or bigger **/
@media screen and (min-width: 800px) {
  #addButton {
    position: sticky;
    right: 10px;
    bottom: 10px;
  }
}

@media screen and (min-width: 1025px){
  #addButton {
    bottom: 50px;
  }
}