html {
  font-family: 'Roboto', sans-serif;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
}

body > section.content {
  margin: auto;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.shapes {
  position: fixed;
}

.shape-1 {
  width: 100px;
  top: 50px;
  left: calc(35vw);
}

.shape-2 {
  left: 0;
  bottom: calc(50vh);
}

.shape-3 {
  top: calc(32vh);
  right: 20%;
}

.shape-4 {
  top: 45px;
  right: 0;
}

.bg-one {
  width: 100%;
  position: absolute;
  top: 0;
  height: 50vh;
  background-color: #21232A;
  z-index: 0;
}

img.logo {
  width: 160px;
  z-index: 1;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

div.selector {
  margin-top: 1rem;
  z-index: 1;
  background-color: #fff;
  color: #21232A;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  align-items: center;
}

div.selector > p {
  border-top: 1px solid #DCDFE5;
  padding-top: 2rem;
}

div.selector > a.card {
  border-top: 1px dashed #DCDFE5;
  margin-top: 1rem;
  padding-top: 1rem;
  width: 100%;
  display: flex;
  text-decoration: none;
  align-items: center;
}

div.selector > a.card > div.image {
  max-height: 140px;
  margin-right: 1rem;
}

div.selector > a.card > div.image > img.event {
  border-radius: 10px;
  object-fit: cover;
  width: 100px;
  height: 140px;
}

div.selector > a.card > div.details {
  text-decoration: none;
  color: #21232A;
}

div.selector > a.card > div.details > p {
  font-size: .75rem;
  line-height: 1.5;
}

@media only screen and (max-width: 600px) {
  div.selector {
    max-width: 100%;
    border-radius: 0;
    padding: 1rem;
  }

  div.selector > a.card > div.image > img.event {
    height: 120px;
    width: 100px;
  }
}