@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Ceviche+One&family=Lobster&family=Nanum+Myeongjo&family=Noto+Sans+KR:wght@500&family=Red+Hat+Mono&family=Roboto+Mono:wght@300&family=Song+Myung&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(back_2.jpg);
    background-position: center;
    background-size: cover ;

}

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

.container .header h1 a{
    text-decoration: none;
    color: white;
    font-family: 'Noto Sans KR', sans-serif;
}

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

.container .nav ul a{
    text-decoration: none;
    color: white;
}

.container .nav ul li a:hover{
    color: rgb(24, 150, 209);
}

.container .hero{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: white;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
}

.container .hero h2{
    font-size: 60px;
    margin-bottom: 20px;
}

.container .hero p{
    font-size: 22px;
}

.container .hero button{
    background: none;
    border:2px solid rgb(24, 150, 209);
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 30px;
    outline: none;
    cursor: pointer;
    transition: all .4s;
    font-family: 'Noto Sans KR', sans-serif;
}

.container .hero button:hover{
    background-color: rgb(16, 112, 136);
}

.footer{
    background-color: rgb(15, 15, 15);
    padding: 18px;
    color: rgb(24, 150, 209);
    text-align: center;
}