@charset "UTF-8";
/* CSS Document */

#main {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

html {
	font-size: 62.5%;
}

body {
	color: #333;
	font-size: 1.2rem;
}

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

a:link, a:visited, a:hover, a:active {
	color: #5F4C0B;
	text-decoration: none;
}

table {
  width: 100%;
}
