*{margin: 0; padding: 0;}
html,body{
    width: 100%;
    height: 100%;
}
a{
    text-decoration: none;
    color: #4A413F;
}
@font-face{
    font-family: 'Trajan-Pro';
    src: url(../font/Trajan-Pro.woff);
}
@font-face{
    font-family: 'GyeonggiBatang_Regular';
    src: url(../font/GyeonggiBatang_Regular.woff);
}
#wrap{
    font-family: 'Noto Sans KR';
    width: 100%;
    height: 100%;
    padding: 10vh 0;
    background-color: #516B55;  
    box-sizing: border-box; 
    position: fixed;
    overflow: hidden;
}
h1,h2{display: none;}
section{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    height: 80vh;
    background-color: #FCEEDE;
    box-sizing: border-box;
}
article{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    height: 70vh;
    font-family: 'GyeonggiBatang_Regular';
    border-top: 2px solid #632810;
    border-bottom: 2px solid #632810;
}
.dot{
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    background-color: #632810;
    margin: 20px;
}
.dot.two{
    right: 0;
}
.dot.three{
    left: 0;
    bottom: 0;
}
.dot.four{
    right: 0;
    bottom: 0;
}

.alertText{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.alertText h3{
    font-family: 'Trajan-Pro';
    font-size: 2rem;
    margin-bottom: 20px;
}
.alertText h4{
    font-size: 2rem;
}
.alertText span{
    display: inline-block;
    width: 200px;
    height: 50px;
    margin-top: 50px;
    background-color: #4A413F;
    border-radius: 10px;
    overflow: hidden;
}
.alertText span a{
    display: block;
    width: 100%;
    line-height: 50px;
    font-family: 'Noto Sans KR';
    font-weight: 500;
    color: #ffffff;
}
.alertText span a:hover{
    background-color: #516B55;
    color: #ffffff;
}

/* Tablet */
@media screen and (max-width: 900px) {
    .dot{
        width: 15px;
        height: 15px;
    }
    .alertText h3{font-size: 1.6rem;}
    .alertText h4{font-size: 1.6rem;}
}

/*mobile */
@media screen and (max-width: 600px) {
    .dot{
        width: 12px;
        height: 12px;
    }
    .alertText h3{font-size: 1.4rem;}
    .alertText h4{
        font-size: 1.4rem;
        word-break: keep-all;
    }
    
}