
/* Base Reset */
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.6;
  color: #000000;
}

a {
  color: #000000;
  text-decoration: none;
  transition: text-decoration 0.3s ease, color 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: underline;
}

