@import url("./global.css");
.wrapperEvent {
  padding: 0 2rem 2rem 2rem;
  font-family: "Source Sans Pro", sans-serif;
  color: white;
}

header {
  padding: 1rem 0;
  border-bottom: 1px solid #282b30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

header .backBtn {
  padding: 1rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  cursor: pointer;
  color: white;
}

header .backBtn i {
  margin-right: 1rem;
}

.eventInfo {
  margin-top: 2rem;
}

.eventInfo .title {
  font-size: 2rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 1rem;
}

.eventInfo .points {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.eventInfo .points p:nth-child(1) {
  color: rgba(255, 255, 255, 0.507);
}

.eventInfo .points p:nth-child(2) {
  color: #ffcc00;
  font-weight: 700;
  font-size: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table th {
  text-align: left;
  padding: 1rem 2rem;
  text-transform: uppercase;
}

table td {
  padding: 1rem 2rem;
}

table td .event {
  font-weight: 600;
}

table td .date {
  color: rgba(255, 255, 255, 0.336);
}

table td a {
  color: #ffec00;
}

table tr:nth-child(even) {
  background: #282b30;
}
/*# sourceMappingURL=event.css.map */