@charset "UTF-8";

/*
GENERAL STYLING
================================================ */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
	color: #232323;
    background-color: #ffffff;
	font-family: sans-serif;

    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*
COMMON
================================================ */

.container {
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
}
section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*
HERO
================================================ */
.contents {
    text-align: center;
    margin: 0 auto;
    display: block;

    display: grid;
    justify-items: center;
    align-content: center;
    height: 100%;

    & img{
        width: 100%;
        max-width: 45%;
        min-width: 200px;
    }

    & .title {
        font-family: 'Grape Nuts', cursive;
        font-size: clamp(7.0rem, 9vw, 13.0rem);

        & span {
            font-size: 125%;
            padding: 0 0.15em 0 0.1em;
        }
    }

    & p {
        font-size: clamp(1.4rem, 1.2vw, 1.6rem);
        font-feature-settings: "palt" 1;
        line-height: 2.0;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    }
}