* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; 
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.unselected {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

header {
  background-color: aqua;
  position: fixed;
  right: 0;
  left: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:0.5s;
  opacity: 0;
}

main .banner {
  height: 300px;
  /* background-color: aqua; */
  top: 0;
  right:0;
  left:0;
  background-image: url(bg.jpg);
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;

  display:flex; 
  align-items: top;
  justify-content: center;
  position: fixed;
  z-index: -1;
}

main .banner h2 {
  margin-top: 100px;
  color: white;
  font-size: 40px;
}

main .daftar {
  z-index: 0;
  background-color: white;
  margin-top: 200px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 100vh;
}

main .daftar h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
main .content {
  padding: 8px;
  display: flex;
  justify-content:center;
}

main .daftar .content .loader {
  margin-top: 32px;
  width: 99px;
  height: 99px;
  border-radius: 50%;
  border: 8px solid rgb(248, 246, 246);
  border-top: 8px solid #5f3216;
  border-bottom: 8px solid #5f3216;
  animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {transform: rotate(0deg)}
  100% {transform: rotate(360deg)}
}

@-webkit-keyframes spin {
  0% {transform: rotate(0deg)}
  100% {transform: rotate(360deg)}
}

main .content .card {
  border:1px solid #ccc;
  padding: 16px;
  margin: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}

main .content .card:hover {
  /* margin: 4px; */
  box-shadow: 0 1px 0 rgba(200, 200, 200);
}

main .content .card .card-number {
  font-size: 25px;
}

main .content .card .card-body {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
}

main .content .card .card-body .card-body-title {
  font-weight: 600;
}

main .content .card .card-body .card-body-desc {
  font-size:12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeee;
  padding: 4px;
  margin-top:16px;  
}

@media screen and (max-width: 600px){
  main .content .card .card-end {
    display: none;
  }
}
