* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  width: 100%;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
  padding: 20px;
  background: #000;
  border: 2px;
  border-color: #333;
  border-radius: 20px;
  color: white;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 4px;
  font-size: 24px;
  cursor: pointer;
}


.section-A {
  background-color: #880707;
  border-radius: 20px;
  margin-bottom: 20px;
}

.section-A:hover {
    background-color: #ff0000;
    color: rgb(87, 0, 0);
}

.section-B {
  background-color: #219b08;
  border-radius: 20px;
  margin-bottom: 20px;
}

.section-B:hover {
    background-color: #00ff00;
    color: rgb(0, 87, 0);
}

.section-C {
  background-color: #06127a;
  border-radius: 20px;
}

.section-C:hover {
    background-color: #0000ff;
    color: rgb(0, 0, 87);
}

span {
  font-size: 18px;
  font-weight: bold;
}

span.my-name {
  color: #ff0000;
}

span.date {
  color: #00ff00;
}

span.time {
  color: #0000ff;
}
