/*
@font-face {
    font-family: abster;
    src: url(font/abster-webfont.woff) form('woff');
}
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

.container{
    width:100%;
    height:100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(image/intro.png);
}

.container .header{
    width: 80%;
    height: 120px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container .header h2 a{
    text-decoration: none;
    color: white;
}

.container .nav ul li{
    display: inline-block;
    margin:0 10px;
}

.container .nav ul li a{
    text-decoration: none;
    color: white;
    /*font-family: abster;*/
}

.container .nav ul li a:hover{
    color: rgb(166, 176, 197);
}

.container .hero{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    color:#ffff;
    text-align: center;
}

.container .hero h2{
    font-size: 40px;
    margin-bottom: 10px;
}

.container .hero p{
    font-size: 18px;
    margin-bottom: 10px;
}

.container .hero button{
    background-color: rgb(199, 211, 238);
    border: 2px solid rgb(120, 134, 163);
    color:#205c5c;
    padding: 15px 20px;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    transition: all .4s;
}

.container .hero button a{
    text-decoration: none;
    color:rgb(120, 134, 163);
}

.container .hero button:hover{
    background-color: rgb(166, 176, 197);
}