body {
    margin: 0;
     font-family: 'Montserrat', sans-serif;
     font-size: 15px;
     line-height: 1.6;
     color: #ffffff;


}

*,
*, before,
*, after {

    box-sizing: border-box;
}


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




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

/* intro */
.intro {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;


    background: 
    url("../images/intro2.jpg ") center no-repeat;

    background-size: cover;

}

/*intro__inner*/
.intro__inner{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}


/*intro__subtitle*/
.intro__subtitle {
    font-family: 'Kaushan Script', cursive;
    font-size: 52px;
    color: #FFFFE0;
    margin-top: 50px;
}

/* intro__title*/
.intro__title {
    font-size: 120px;
    font-weight: 700;
    text-transform: uppercase;
    
    color: white;
    line-height: 1;
    z-index: 0;
}

/*intro tirle::after*/
.intro__title::after {
    content: " ";
    display: block;
    width: 60px;
    height: 3px;
    background-color: white;
    margin: 0 auto;
    margin-top: 55px;
}


/* header */
.header {
    width: 100%;
    padding-top: 35px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

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


}

/* header__logo */
.header__logo {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

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

/* nav */
.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 30px;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.5s linear ;
}

.nav__link::after {
    content: " ";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    display: block;
    opacity: 0;

    background-color: #fce38a;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity 0.4s linear;
}

.nav__link:hover {
    color: #fce38a;
    
}
.nav__link:hover::after {
    opacity: 1;
}


/* Button */
.button {
    padding: 8px 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    
    vertical-align: top;
    border: 3px solid white;
    margin: 0 auto;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 50px;
    transition: color 0.5s linear ;
    transition: background-color 0.5s linear;
}

.button:hover{
    background-color: white;
    color: black;
}

