* {
    margin: 0;
    padding: 0;
    border: 0;
}

*:focus {
    -moz-outline: 0;
    outline: 0;
}

html, body {
    background-color: #0c0c0c;
    color: white;
}

body {
    font-family: 'Source Sans Pro', 'Open Sans', sans-serif;
    background: #497CA1;
    background: radial-gradient(circle farthest-side at center center, #497CA1 0%, #0C0C0C 80%);
}

button {
    background-color: #da032a;
    border-color: #da032a;
    text-shadow: none;
    box-shadow: none;
    color: #fff;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
    font-weight: bold;
}

button:hover {
    background-color: #E9D985;
    color: #000;
}

h2 {
    font-size: 2em;
    padding: 8px 0;
    color: white;
}

hr {
    background-color: rgba(255, 255, 255, 0.5);
    margin: 8px 0;
    padding: 0.5px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    margin-bottom: 32px;
}

.header-image {
    width: 400px;
    height: auto;
}


.content-container {
    min-height: 100vh;
    width: 80%;
    margin: 0 auto;
    max-width: 900px;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
}

.active {
    background-color: #E9D985;
    color: #000;
}

.category-item {
    margin: 4px;
}

.months-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 0;
    margin-top: 16px;
}

.months-form select {
    width: 150px;
    height: 28px;
    color: white;
    background-color: #da032a;
}

.months-form button {
    padding: 0.25rem 1rem;
    margin-left: 8px;
}

.event-header {
    width: 353px;
}

a {
    text-decoration: none;}


.event-container {
    height: 50px;
    max-width: 900px;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 auto;
    margin-top: 16px;
    width: 90%;
    padding: 2px;
    position: relative;
    background-color: #7a0000;
    border-bottom: 2px solid #e6a400;
    transition: all 0.2s;
  }

  .event-container:hover {
    background-color: #4f0000;
  }

  .date-container {
    font-size: 12px;
    font-weight: bold;
    width: 90px;
    text-align: center;
  }

  .name-container {
    max-width: 600px;
    overflow: wrap;
  }

  .address-container {
    font-size: 16px;
    font-weight: bold;
    width: 90px;
    text-align: center;
    position: absolute;
    right: 8px;
  }

.button-container, .empty-container {
    width: 113px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0 !important;
}

.event-container>* {
    padding: 8px 8px 8px 0;
}


footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100px;
    width: 100%;
    background-color: black;
    color: white;
  }

  .footer-box {
    display: flex;
    flex-direction: column;
  }

  .footer-box a {
    color: white;
  }

  .footer-box img {
    height: 32px;
    color: white;
  }

  .legal-notice {
    color: white;
  }