@charset "UTF-8";

/*
YUI 3.4.1 (build 4118)
Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:inherit}legend{color:#000}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  padding-bottom: 2rem;
  font-family: sans-serif;
  background: var(--main-bg-color);
}

a {
  color: #04f;
  text-decoration: none;
}
a:hover {
  color: #f30;
}

strong {
  font-weight: 700;
}

em {
  font-weight: 700;
  color: var(--primary-color);
}

p {
  padding: 0.25em 0;
  line-height: 1.25;
}

input[type="text"],
input[type="number"],
input[type="password"] {
  padding: 0.5rem;
  border: 1px solid #999999;
  border-radius: 0.25rem;
}

.button,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 1.125rem;  
  color: white;
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0.25rem;
  transition: background-color 0.3s;
  cursor: pointer;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: var(--secondary-color);
}

#share {
  margin: 1rem auto 2.5rem;
  text-align: center;
}
.share-button {
  display: inline-block;
  margin: 0 0.125rem;
  font-size: 1.75rem;
  width: 6rem;
  text-align: center;
  border-radius: 0.5rem;
}
.share-button#x-share {
  background: #111;
}
.share-button#line-share {
  background: #00b900;
}
.share-button#facebook-share {
  background: #0866ff;
}
.share-button i {
  color: #fff;
}

.site-header {
  position: relative;
  margin-bottom: 0.75rem;
  background-color: var(--secondary-color);
}
.site-title {
  position: absolute;
  left: 0.5rem;
  top: 0;
  color: #ffffff;
}
.site-title span {
  display: none;
}
.page-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

main .container {
  margin: auto;
  padding: 0 15px;
  max-width: 670px;
}

.site-footer {
  position: fixed;
  z-index: 99;
  width: 100%;
  left: 0;
  bottom: 0px;
  text-align: center;
  background: var(--secondary-color);
}
.site-footer a {
  vertical-align: text-bottom;
  color: #cccccc;
}
.site-footer a:hover {
  color: #ffffff;
}




