/* Raleway Font */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* EBGaramond Font */
@font-face {
  font-family: 'EBGaramond';
  src: url('../fonts/EBGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



html {
  margin: 0;
  padding: 0;
  max-height: 100vh;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  background: rgb(250,250,250);
  background: radial-gradient(circle, rgba(250,250,250,1) 0%, rgba(231,217,247,1) 100%);
}

.page-container {
  margin: 0px;
  padding: 15px;
  max-height: 100vh;
  height: 100vh;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container-with-border {
  border: 6px solid #786c87;
  padding: 10px;
  border-radius: 10px;
  height: auto;
  box-sizing: border-box;
}

.coming-soon-container-with-border {
    border: 6px solid #786c87;
  padding: 10px;
  border-radius: 10px;
  height: 100%;
  box-sizing: border-box;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.ten-px-column-gap {
  column-gap: 10px;
}

.ten-px-row-gap {
  row-gap: 10px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EBGaramond';
  text-align: center;
}

h1 {
  font-size: 1.4rem;
  color: #3e038e; 
}

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

  .page-title {
    font-size: 2.5rem;
  }

h2 {
  font-size: 1.3rem;
  color: #5a3785;
  margin: 0;
}

p, a, ul, li, label {
  font-family: 'Raleway';
  font-weight: 600;
}

a {
  text-decoration: none;
}

.logo {
  width: 300px;
  max-width: 100%;
}

.gold {
  color: #c57d00;
}

.italic {
  font-style: italic;
}

img {
  max-width: 100%;
}


.x-y-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
} 


ul#results {
    list-style-type: none;
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
    padding-left: 0; /* Remove left padding */
    margin-left: 0; /* Remove left margin */
    width: 100% !important;
    box-sizing: border-box;
}

ul#results li {
    margin-bottom: 10px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #5a3785;
    width: 350px;
}


@media (max-width: 1162px) {

  ul#results li {
    width: 100% !important;
  }

  .mobile-hundred-width {
    width: 100% !important;
    border-right: none !important;
  }

  .one-fourth-column {
    padding-right: 20px;
    border-right: 1px solid gray;
  } 

}


@media (min-width: 1163px) {
  .logo {
    width: 100%;
  }
}


@media (max-width: 970px) {

  .mobile-hide {
    display: none !important;
  }

  .one-fourth-column {
    background-color: #786c87;
    border-radius: 7px;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
  }

}

@media (min-width: 971px) {

  .mobile-show {
    display: none !important;
  }

}

@media (max-width: 1160px) and (min-width: 971px) {

  .one-fourth-column {
    text-align: center;
  }
  
}


@media (max-width: 425px) {

  h1 {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

}



/*# sourceMappingURL=main.css.map */
