/* a minimalist set of CSS resets */

/* default to border-box */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* adjust typography defaults */
body {
  margin: 1rem;
  font-family: sans-serif;
  line-height: 1.5;
  background-color: #6edec3;
}

/* images and videos max out at full width */
img,
video {
  height: auto;
  max-width: 100%;
}

.smolboi {
  font-size: 10px;
}

button {
  background-color: lightcoral; /* Light red color */
  color: white; /* Text color */
  font-family: "Arial", sans-serif; /* Specify your preferred font */
  font-size: 16px; /* Font size */
  padding: 10px 20px; /* Padding for the button */
  border: none; /* Remove button border */
  cursor: pointer; /* Add a pointer cursor on hover */
  transition: background-color 0.3s;
}
button a {
  text-decoration: none; /* Remove underline */
  color: black; /* Black text color */
}

button:hover {
  background-color: tomato; /* Change color on hover */
}
