

table, td {
    border: 10px;
    border-collapse: collapse;
    padding: 10px;
    font-family: "Raleway", sans-serif;
  }
th {
    border: 10px;
    border-collapse: collapse;
    padding: 10px;
    background-color: green;
    color: white;
    font-family: "Raleway", sans-serif;
}

#demo {
  color: yellow;
  font-size: 50px;
  font-family: "Raleway", sans-serif;
  text-align: center;
}


.background {
  background-color: green;
  display: inline-block;
  opacity: 75%;
}



h1 {
    
    color:white;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

h2 {
    color: yellow;
    font-family: "Raleway", sans-serif;
}



h3 {
    color: yellow;  
    font-family: "Raleway", sans-serif;
}

h3 span {
  background-color: green;
}

.link {
    
    color: yellow;
    display: inline;
}


img {
    border: 5px solid white;
}

/*style the rules list*/
ul {
  font-size: 20px;
  color: white;
  list-style-type: circle;
  font-family: "Raleway", sans-serif;
  
}

li {
  margin: 20px 0px;
  
}


body {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(55, 142, 181, 0.5), rgba(55, 142, 181, 0.2)), url("images/shanty.jpg") top center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/*button*/
button {
    background-color: green;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
}
.button:hover {
    background-color: lightgreen; /* Green */
    color: white;
  }

/*style homepage table */
.teams {
text-align: center;
margin-left: auto;
margin-right: auto;
background-color: white;
color:green;
}

.matchup {
text-align: center;

background-color: white;
color:green;
}



  /* Add a black background color to the top navigation */
.topnav {
    font-family: "Raleway", sans-serif;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    opacity: 80%;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }

  /* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 400px;
    height: 400px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-box-front {
    background-color: #bbb;
    color: black;
  }
  
  /* Style the back side */
  .flip-box-back {
    background-color: green;
    color: white;
    transform: rotateY(180deg);
  }

  /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }


}
.topnav-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 111, 142, 0.9);
  transition: 0.3s;
}
.topnav-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
