@charset 'utf-8';

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#wrap{
    width: 80%;
    margin: 50px auto;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    border-radius: 20px;
}
h1{
    text-align: center;
    padding-top: 50px;
    color: rgb(96, 144, 235);
}
h3{
    text-align: center;
    padding-top: 20px
}
.box1{
    text-align: center;
    line-height: 200px;
    width: 90%;
    height: 400px;
    border: 1px solid #efefef;
    border-radius: 10px;
    margin: 100px auto 100px;
    background-image: url("../images/bg01.jpg");
    background-position: center;
    background-size: 150%;
    box-shadow: 0 0 30px rgba(121, 168, 255, 0.4);
}


a{
    text-decoration: none;
}
a>.box1:hover{
    background-size: 160%;
    transition: 0.4s;
    opacity: 0.6;
    color:#333;
}
a>.box2:hover{
    background-size: 180%;
    transition: 0.4s;
    opacity: 0.6;
}
.box1>p,.box2>p{
    font-size: 30px;
    font-family: "고딕체";
    margin-top: 90px;
    color: aliceblue;
    text-shadow: 0 0 8px #000;
}
footer{
    padding-top: 26px;
    background-color: rgb(23, 33, 121);
    width: 100%;
    height: 100px;
    color:#fff;
    border-radius: 0 0 20px 20px;
    text-align: center;
}
