    /* FONT ADD IN*/
    @font-face {
        font-family: 'Kingthings Organica';
        src: url('../fonts/Kingthings Organica.ttf') format('truetype');

    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    /* BG colour */
    body{
        background-color:#Fbe6ff;
        /*background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        height: 100%;*/
    }

    /* button style */
    .menu-header{
        /* position */
        position: fixed;
        bottom: 10px;
        left: 50%;
        gap: 20px;
        z-index: 1000;
        transform: translateX(-50%);
        height: 60px;

        display : flex;
        justify-content: center;
        align-items: center;
    }

    .main-illust{
        top: 0;
        bottom: 0;

        width: 100vw;
        height: 110vh;
        z-index: -1;

        overflow: hidden;
        justify-content: center;
        align-items: flex-start;
    }

     .logo {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        object-position: top center;
    }



    /* button style */
    button{
        background-color: #4d70fd;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 15px;

        /* font */
        font-family: 'Kingthings Organica', sans-serif;
        font-weight: 600;
        font-size: 26px;
        letter-spacing: 1.3px;

    }

    button:hover{
        scale: 1.1;
    }

    @media screen and (max-width:500px){
        .main-illust{
            width: 100vw;
            min-width: 100%;
        }
        .menu-header{
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: auto;

            bottom: 50px;
            margin-top: 0;

            width: 7em;
        }   
    }

