* {
  box-sizing: border-box;
}

body {
    /* background-image: url("https://www.usasoftball.com/wp-content/uploads/sites/120/2023/06/stad-2.jpg");
    background-repeat: no-repeat; */
    background-position: absolute;
    background-color: #eeeeee;
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}

.ex1 {
    max-width: 80%;
    text-align: center;
}

.clickymap {
    max-width: 50%;
}

/* Replace the transform approach entirely */
#map {
  transform: none;          /* remove the scale */
  width: 80%;               /* same “look” as 0.8 scale */
  max-width: 1200px;        /* optional cap */
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #map { width: 100%; }
}




.instructions {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: center;
    padding-left: 20px;
    padding-right: 40px;
}

h2 {
    background-color: #0e255d;
    color: white;
    Padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 0px;
    width: 100%;
    margin-top: 0;
    border-top: 3px solid #c30322;
}

h1 {
    font-family: 'Lato', sans-serif;
    
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

h3 {
    font-family: 'Lato', sans-serif;
    
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}

.custom-heading {
    display:flex;
    align-items: center;
}

.navigation {
    display: inline-block;
}

.logo {
    max-height: 6em;
    padding-right: 10px;

}

.dropdowns {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #5c5c5c;
    padding: 3px 10px;
    
    
}

@media only screen and (max-width: 900px) and (min-width: 500px){
    .logo {
        max-height: 4.5em;
        margin-right: 5px;
        
    }
}

@media only screen and (max-width: 900px) {
    .dropdowns {
        font-size: 18px;
        margin-bottom: 8px;
        color: black;
    }
}

@media only screen and (max-width: 900px) and (min-width: 500px) {
    .instructions {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .instructions {
        padding-left: 10px;
        padding-right: 5px;
    }
}

@media only screen and (max-width: 600px) and (min-width: 500px){
    h2 {
        font-size: medium;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 500px) {
    h2 {
        font-size: small;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .logo {
        max-height: 4.5em;
        margin-right: 1px;
    }
}


.tournament-button {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #0e255d; /* Blue color, you can customize */
    color: #fff; /* White text, you can customize */
    border-radius: 7px;
    cursor: pointer;
  }

  /* Hover effect for the button */
  .tournament-button:hover {
    background-color: #0056b3; /* Darker blue on hover, you can customize */
  }

.footer-note {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #5c5c5c;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 5px 10px;
  line-height: 1.4;
}

.footer-note a {
  color: #0e255d;
  text-decoration: underline;
}
