body {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

    /* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

/* intro */

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100vh;
    
    background: url("../Image/poster2_2_111223.png") center
    no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}


.intro__inner{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;

    text-align: center;
}


.intro__title{
    font-size: 100px;
    font-weight: 100; 
    text-transform: uppercase;
    line-height: 1.1;
    color: white;
}


/* header */
.header {
    width: 100%;
    padding-top: 0px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}


/* nav */
.nav{
    font-size: 14px;
    text-transform: uppercase;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;

    color: #fff;
    text-decoration: none;

    transition: color .2s liner;
}

.nav__link:hover {
    color: green; 
}


/* btn */
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;

    border: 3px solid #fff;

    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.btn:hover {
    color: green;
}

/* Games */

.Games{
    display: flex;
    justify-content: space-between;
    color: white;
}

.Games__Item {
    width: 30%;
    margin: 35px;
    
}

.Link__Game{
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.Link__Game:hover {
    color: green; 
}
























