html {
  height: 100%;
}
body {
  font-family: cursive;
  font-size: large;
  margin: 0;
  padding: 0;
  height: 811px;
  width: 100%;
  position: relative;
  background-color: rgb(138, 124, 235, 0.6);
  color: snow;
  background-image: url(img/kota2.jpg);
  background-position: cover;
  background-repeat: repeat;
}

header {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  background-color: rgba(247, 240, 241, 0.8);
}

.container {
  height: 811px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  flex-direction: column;
}

.text {
  font-size: 25px;
  line-height: 25px;
  color: purple;
  text-align: center;
  background-color: rgba(247, 240, 241, 0.6);
  z-index: 3;
  padding: 15px;
  margin: 15px auto;
  border-radius: 15px;
}

.text:hover {
  cursor: pointer;
}

.table {
  display: flex;
  justify-content: center;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 15px;
  align-items: center;
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  border: 2px solid #eee;
}

thead,
tfoot {
  font-size: large;
  background: rgb(138, 124, 235, 0.5);
}

th {
  padding: 8px;
  text-align: center;
}

td {
  padding: 8px;
  text-align: center;
  background-color: rgba(247, 240, 241, 0.6);
  font-weight: 1600;
  font-size: x-large;
}

tbody td:first-child {
  color: rgb(223, 113, 132);
  font-weight: 600;
}

tbody td:first-child.disabled {
  color: rgb(128, 128, 128, 0.5);
  font-weight: 600;
}

tbody td:last-child {
  font-weight: 800;
  color: rgb(115, 173, 28);
}

tbody td:last-child.disabled {
  font-weight: 600;
  color: rgb(128, 128, 128, 0.5);
}

tfoot {
  font-weight: 800;
  font-size: 25px;
}

td.disabled {
  background-color: rgba(247, 240, 241, 0.6);
  /* opacity: 0.8; */
  font-size: 14px;
  color: rgb(128, 128, 128, 0.5);
}
td.today {
  font-weight: 800;
  background-color: rgba(223, 113, 132, 0.4);
}

#prev,
#next,
#today {
  cursor: pointer;
  user-select: none;
}

@media (min-width: 760px) {
  .body {
    font-size: 50px;
  }
  .container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .text {
    font-size: 50px;
    line-height: 40px;
  }

  thead {
    font-size: 40px;

  }

  td {
    font-size: 40px;
    font-weight: 500;
  }

  tbody td:first-child {
    font-weight: 600;
  }

  tbody td:first-child.disabled {
    font-weight: 600;
  }

  tbody td:last-child {
    font-weight: 600;
  }

  tbody td:last-child.disabled {
    font-weight: 600;
  }

  tfoot {
    font-weight: 800;
    font-size: 80px;
  }

  td.disabled {
    font-size: 40px;
  }
  td.today {
    font-weight: 800;
  }
}
