/* ====== CSS Reset & Base ====== */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');

/* Reset margin/padding & set box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set default body styles */
body {
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
  font-size: 16px;
}

/* Set default anchor style */
a {
  color: inherit;
  text-decoration: none;
  color: #3333bb;
}

a:hover {
  text-decoration: underline;
}

/* Image handling */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Heading defaults */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
}

button {
  cursor: pointer;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Table basics */
table {
  border-collapse: collapse;
  width: 100%;
}