@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    font-family: "Pretendard Variable", system-ui;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;

    max-width: 768px;
    min-height:100vh;
    margin: 0 auto;
    background-color: white;

    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    flex-grow: 1;
}

.header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.info-icon, .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px; /* Increase text size slightly for better readability */
    color: #333;
}

.info-icon {
    left: 10px; /* Align info icon to the left with consistent padding */
}

.info-icon a, .login-container a {
    color: #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-icon svg, .login-container svg {
    width: 24px; /* Increase icon size for better visibility */
    height: 24px;
}

.info-icon a:hover, .login-container a:hover {
    color: #007bff; /* Change color on hover for better UX */
}

.scrollable-content {
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seeGuide {
    color:#888;
    font-size: 14px;
    text-underline-offset: 4px;
}

#title {
    font-family: "Caveat", cursive;
    font-weight: bold;
    font-size: 48px;
    color: #4B90E2;
    text-align: center;
    margin-top: 20px;
}

.subtitle {
    color: #555;
    font-weight: 300;

    font-size: 16px;
    line-height:1.4;
    text-align: center;
    margin-top: 8px;
}

.content-frame {
    width: calc(100% - 40px);
    display:flex;
    justify-content: center;

    gap:24px;
    margin-top: 60px;
}

.content-frame > a {
    width: 100%;
    height:48px;

    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

    text-decoration: none;
}

.content-frame > a.write-legacy {
    background: #4B90E2;
    color:white;
}
.content-frame > a.view-legacy {
    background:white;
    color:#4B90E2;
    border:1px solid #4B90E2;
}

/* .content {
    background-color: #e8f0fe;
    color: #333;
    padding: 30px;
    border-radius: 5px;
    font-size: 20px;
    text-align: justify;
    margin-top: 20px;
}

.content p {
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
} */

.navbar {
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;
    bottom:0;
    left:0;
    padding:20px;
    box-shadow: -2px 0px 20px 0px rgba(0, 0, 0, 0.08);
    /* border:1px solid dodgerblue; */
}

.navbar ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

.navbar li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar a {
    color: #333;
    font-size: 14px;
    margin-top: 8px;
    text-decoration: none;
}

.navbar a.nav-active {
    color: #4B90E2;
    font-size: 14px;
    margin-top: 8px;
}

.navbar img {
    width: 24px;
    height: 24px;
}