/**
 * @file
 * Base reset styles.
 */

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #e8e8e8;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #260387;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1a025e;
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5em;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
