/* base */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Cabin Sketch', "Hiragino Kaku Gothic ProN", sans-serif;
    word-break: break-all;
    text-decoration: none;
}
html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p, div,
label, input, select {
    margin: 0;
    padding: 0;
    color: #696969;
    text-align: left;
}
html {
    font-size: 62.5%;
}
ul li {
    list-style: none;
}
.fa, .fas, .fab, .far {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 4.8rem;
}
h2 {
	font-size: 3.4rem;
    line-height: 3.6rem;
    line-height: 4rem;
}
h3 {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 3rem;
}
h4 {
	font-size: 1.8rem;
	line-height: 2.6rem;
}
h5 {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
}
p {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.2rem;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.clear::after {
    content: "";
    display: table;
    clear: both;
}
a {
    color: #696969;
}

/* contents */
/* header */
body {
    background-image: url(../img/background.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}
header {
    height: 8rem;
    width: 100%;
    background-color: #fff;
}
.header-container {
    max-width: 1008px;
    width: 90%;
    margin: 0 auto;
}
.header-left h2 {
    color: #1e90ff;
    line-height: 3.6rem;
}
.header-left p {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-top: 1.6rem;
}
.fa-gamepad {
    margin-left: 10px;
}
.menus {
    display: flex;
    flex-wrap: wrap;
}
.menus li {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: 3rem 0 0 3rem;
    cursor: pointer;
    position: relative;
}
.menus li::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #696969;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.menus li:hover::after {
    transform: scale(1, 1);
}

/* main */
main {
    max-width: 1008px;
    width: 90%;
    margin: 0 auto;
}
.head-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.head-image {
    width: 100%;
}
.head-image video {
    width: 100%;
}
.main-container {
    width: 70%;
}
.main-container li {
    margin-bottom: 5rem;
}
.game {
    width: 100%;
    background: #fff;
}
.game-image {
    width: 25%;
    background: #d3d3d3;
}
.game-description {
    width: 75%;
    padding: 2rem 4rem 4rem;
}
.game-description h2 {
    margin-bottom: 2rem;
}
.game-description h2:hover {
    text-decoration: underline;
}

/* sidebar */
aside {
    background: #fff;
    width: 26%;
    padding: 2.5rem;
}
aside h5 {
    margin-bottom: 2rem;
    font-weight: 900;
    text-align: center;
    background: #1e90ff;
    color: #fff;
    padding: 1rem 0;
    border-radius: 4px;
}
.profile-container {
    width: 70%;
    margin: 0 auto;
}
aside img {
    width: 100%;
    border-radius: 50%;
}
aside p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
aside .name {
    text-align: center;
    margin: 1rem 0 1rem;
    font-size: 1.6rem;
    text-decoration: underline;
}
.follow {
    font-size: 1.6rem;
    text-decoration: underline;
    margin-bottom: 1rem;
}
aside a {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 6px;
    padding: 1rem;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}
aside .twitter {
    background: #1da1f2;
}
aside .instagram {
    background: #d93177;
}
aside .fab {
    margin-right: 0.5rem;
}

/* footer */
footer {
    height: 4rem;
    width: 100%;
    background-color: #fff;
}
.footer-container {
    max-width: 1008px;
    width: 90%;
    margin: 0 auto;
}
.footer-container p {
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #d3d3d3;
    text-align: center;
    line-height: 4rem;
}

