main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    position: relative;
}

#home {
    position: relative;
    padding: 60px 40px;
}

#homeFrame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

#homeFrameInline {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-dasharray: 14 10;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 4px rgba(0, 198, 255, 0.6));
}

#homeContent {
    text-align: center;
    position: relative;
    z-index: 1;
}

#homeContentTitle {
    font-family: "Kirang Haerang", system-ui;
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
}

#homeContentSubtitle {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

#homeContentEmail {
    font-size: 16px;
    text-decoration: underline;
}

@media (max-width: 600px) {
    #home {
        padding: 40px 20px;
    }

    #homeContentTitle {
        font-size: 36px;
    }

    #homeContentSubtitle {
        font-size: 16px;
    }

    #homeContentEmail {
        font-size: 14px;
    }
}

/******************* Terms ********************/

#terms {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 10px;
    padding: 6px 12px;
}