/* working with style */
/* updated 2025-11-05 */

html {
	font-size: 62.5%;
}

body {
	background-color:pink;
	font-family: courier;
	line-height: 1.618;
	font-size: 1.8rem;
	max-width: 30em;
	margin: auto;
}

@media (max-width: 684px) {
	body {
		font-size: 1.53rem;
	}
}

@media (max-width: 382px) {
	body {
		font-size: 1.35rem;
	}
}

#statuscafe {
    padding: .5em;
    background-color: azure;
    border: 1px solid midnightblue;
    max-width: 30em;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

/* Tables */
table {
  text-align: justify;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

td, th {
  padding: 0.5em;
  border-bottom: 1px solid #40363a;
}
tr:hover {background-color: #F89880;}
