@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ECEFF4;
}

.button {
    background-color: #0ABDC3;
    color: #161C26;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #099aa3;
}

.logo {
    margin: 0 auto;
    display: block;
    text-align: center;
}

.date {
    color: #666; /* Optional: Makes it slightly muted */
}

a {
    font-size: 1em; /* Default size */
    text-decoration: underline;
    text-decoration-style: dotted;
    color: #161C26;
    font-weight: bold;
}

img.feed {
  filter: grayscale(0%) contrast(100%) brightness(100%) sepia(1) hue-rotate(180deg) saturate(100%);
}

input[type="checkbox"] {
  accent-color: #161C26;
  color: #ECEFF4;
}