@charset "utf-8";

/* === Base Reset === */
html,
body {
    height: 99%;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    background-color: #fff;
    background-image: url("img/bg202503.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 0.75rem;
    font-family: sans-serif;
    font-weight: 200;
    line-height: 1.8;
    letter-spacing: 0.05rem;
    animation: bodyFadeIn 2s ease 0s 1 normal;
}

/* === Fade-in Animation === */
@keyframes bodyFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* === Links === */
a,
a:visited {
    color: #004;
    text-decoration: none;
}

/* === Container / Scroll Snap === */
.container {
    height: 100vh;
    width: 100%;
    overflow: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* === Section Area === */
.area {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
}

/* === Inner Layouts === */
.inner-area {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-area-text {
    padding: 0 2rem;
    box-sizing: border-box;
}

/* === Logo === */
.logo {
    width: 200px;
    max-width: 50%;
    height: auto;
}
