@font-face {
    font-family: "Figtree";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("./fonts/Figtree-400.woff2") format("woff2");
}
@font-face {
    font-family: "Figtree";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("./fonts/Figtree-500.woff2") format("woff2");
}
@font-face {
    font-family: "Figtree";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("./fonts/Figtree-600.woff2") format("woff2");
}
@font-face {
    font-family: "Figtree";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("./fonts/Figtree-700.woff2") format("woff2");
}
body {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    background-color: #002fa7;
    color: white;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.font-logo {
    letter-spacing: -0.05em;
}
::selection {
    background: white;
    color: #002fa7;
}
::-webkit-scrollbar {
    display: none;
}
.search-focus:focus-within {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}
.footer-link {
    border-bottom: 1px solid white;
    transition: border-color 0.2s;
}
.footer-link:hover {
    border-color: transparent;
}
.header-logo {
    position: absolute;
    top: 64px;
    left: 64px;
    z-index: 20;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.corner-decoration {
    max-width: 256px;
    max-height: 256px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.icon-btn {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}
.icon-btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.icon-btn > div {
    transition: transform 0.2s;
}
.icon-btn:hover > div {
    transform: scale(1.1);
}
@media (max-width: 640px) {
    .header-logo {
        top: 24px;
        left: 20px;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 32px;
    }
    .corner-decoration {
        max-width: 80px;
        max-height: 80px;
        margin-top: 16px;
    }
    .main-content {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    #greeting {
        font-size: 2.75rem !important;
        line-height: 1.1 !important;
    }
    .icon-btn {
        width: 2.75rem;
        height: 2.75rem;
    }
    .icon-btn img {
        width: 1.375rem !important;
        height: 1.375rem !important;
    }
}
@media (max-width: 480px) {
    .header-logo {
        top: 20px;
        left: 16px;
    }
    .main-content {
        padding-top: 80px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }
    #greeting {
        font-size: 2.25rem !important;
        line-height: 1.1 !important;
    }
    .flex.items-center.space-x-6 {
        gap: 1rem;
    }
    .icon-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    .icon-btn img {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
}
@media (max-height: 600px) {
    .header-logo {
        top: 16px;
    }
    .main-content {
        padding-top: 70px;
    }
    #greeting {
        font-size: 2rem !important;
        margin-bottom: 0.5rem;
    }
    .flex.flex-col.space-y-8 {
        gap: 1rem;
    }
    .flex.flex-col.space-y-12 {
        gap: 1.5rem;
    }
}
@media (max-height: 400px) {
    .header-logo {
        top: 12px;
    }
    .main-content {
        padding-top: 50px;
    }
    #greeting {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem;
    }
    .flex.flex-col.space-y-8 {
        gap: 0.5rem;
    }
    .flex.flex-col.space-y-12 {
        gap: 0.75rem;
    }
    footer {
        padding-bottom: 16px;
    }
}
