@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");

body {
    font-family: 'Paperlogy', 'Pretendard Variable', 'Pretendard', 'Nunito', sans-serif;
    color: #212121;
    height: 100%;
    margin: 0;
    padding: 0;
}

body * {
    outline: none;
    overflow: hidden;
}

.renewal-bg {
    position: absolute;
}

.bg-image {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.bg-image-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

h1 {
    margin-top: 5rem;
    text-align: center;
}

h1 img {
    height: 50px;
}

.renewal-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    background: transparent;
}

.renewal-section {
    position: relative;
    z-index: 0;
}

.renewal-body {
    margin-top: 2.8rem;
    text-align: center;
}

.renewal-body h2 {
    color: #FF4545;
    font-weight: 600;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
}

.renewal-body div {
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.05em;
    margin-top: 2rem;
    text-align: center;
}

.footer-section {
    position: absolute;
    z-index: 10;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #F65252;
    text-align: center;
}

.footer-copyright {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    margin-top: 25px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    h1 {
        margin-top: 4rem;
    }

    h1 img {
        height: 64px;
    }

    .renewal-body {
        margin-top: 3.5rem;
    }

    .renewal-body h2 {
        font-size: 56px;
        letter-spacing: 0;
    }

    .renewal-body div {
        letter-spacing: 0;
    }
}

@media screen and (min-width: 1024px) {
    h1 {
        margin-top: 5rem;
    }

    .bg-image {
        bottom: -60px;
    }

    .footer-copyright {
        font-size: 18px;
    }
}

@media screen and (min-width: 1800px) {
    .bg-image {
        max-height: 800px;
        object-fit: cover;
    }
}

