.wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(/img/back.png);
    background-position: 50%,50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.logoArea {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.logoText {
    font-family: 'NotoSans-Bold';
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}
.link {
    color: #fff;
    text-decoration: none;
    font-family: 'NotoSans-Bold';
    display: block;
    width: 250px;
    background-color: dodgerblue;
    text-align: center;
    padding: 10px 0px;
    border-radius: 5px;
    transition: .3s;
}
.link:hover {
    background-color: #fff;
    color: #000;
}
.footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #2b2b2b;
}
.footerFrame {
    width: 100%;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footerText {
    font-family: 'NotoSans-Regular';
    font-size: 12px;
    color: #fff;
}

/* 반응형 */
@media screen and (max-width:650px) {
    .logoArea {
        width: 400px;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .logoText {
        font-size: 16px;
    }
}
@media screen and (max-width:430px) {
    .logoArea {
        width: 350px;
    }
}
@media screen and (max-width:370px) {
    .logoArea {
        width: 300px;
    }
}