* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f6f6;
  font-family: "Poiret One", sans-serif;
}

header {
  max-width: 50vw;
  margin: 0 auto;
  background-color: rgb(5, 5, 119);
  color: white;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 69%;
  padding: 75px 0 100px 0;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 10px 2px grey;
}

header h1,
header p {
  padding-left: 100px;
  font-family: "Poiret One", sans-serif;
}

section {
  width: 50vw;
  margin: 50px auto;
}

section h2:first-of-type {
  font-size: 2rem;
}

.activity-card, .add-new-task {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(3, 10, 20, 0.04);
  box-shadow:
    0 12px 24px rgba(2, 6, 23, 0.12),
    0 4px 8px rgba(2, 6, 23, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.activity-card:hover {
  background-color: #d3d3d3;
  cursor: pointer;
}

.activity-card  p {
    font-size: 1.25rem;
    font-weight: 500;
}

.activity-card p span {
    font-weight: 700;
    font-size: 1rem;
}

.activity-card p span:first-of-type {
    color: blue;
    margin-right: 10px;
}

.activity-card p span:last-of-type {
    color: red;
}

.activity-card .check input[type="checkbox"] {
  -webkit-transform: scale(1.8);
  transform: scale(2.1);
  -webkit-transform-origin: center;
  transform-origin: center;
  margin: 0 8px; /* adjust spacing as needed */
}

.add-new-task .btn-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: #ffffff;
    color: #adadad;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    border: 2px solid #adadad;
    font-size: 1rem;
    line-height: 1;
}


