body {
    background: url(https://images.unsplash.com/photo-1590227632180-80a3bf110871?ixid=MXwxMjA3fDB8MHxzZWFyY2h8Nnx8YmFza2V0YmFsbHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=60);
    background-size: cover;
    background-attachment: fixed;

    /* page load transition fade in animation */

    animation: transitionIn 0.75s;
}

/* media queries */
@media only screen 
    and (device-width : 375px) 
    and (device-height : 812px) 
    and (-webkit-device-pixel-ratio : 3) 
    { 

      .byol_card {

        margin-top: 10%;

      }

      .col-xl {
        overflow: scroll;
      }

    }



/* index.html*/

.card:hover {
  -webkit-box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
  box-shadow: -1px 9px 40px -12px rgba(green, blue, alpha);
}

.margin {
  margin-top: 10%;
}

.padding {
  padding-top: 10%;
}

/* teamstats.html */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  width: 250%;
}

button {
  width: 100%;
  text-align: center;
}
/* page load transition fade in animation */

@keyframes transitionIn {

  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}
