html {
    margin: 0;
    font-size: 62.5%;
    overflow-x: hidden;
    justify-content: center;
}

body {
    padding: none;
    margin: auto;
    width: 126rem;
    max-width: 126rem;
}

@font-face {
    font-family: MyFont;
    src: url(SpaceMono-Bold.ttf);
}

@font-face {
    font-family: MyFont1;
    src: url(LufgaRegular.ttf);
}

@font-face {
    font-family: MyFont2;
    src: url(LufgaBold.ttf);
}

h1 {
    margin: 0;
    padding: 0;
    font-family: MyFont;
}

p {
    font-size: 1.5rem;
    font-family: MyFont1;
}


/* WEB VIEW */

/* Navbar */

.nav {
    width: 126rem;
    height: 12rem;
    max-width: 126rem;
    z-index: 999;
    position: fixed;
    box-sizing: border-box;
    /* background-color: rgb(207, 207, 207); */
    background-image: linear-gradient( to right, green, #faf1e1 70%);
}

.navbar {
    display: flex;
    padding-left: 15rem;
    justify-content: space-between;
    box-sizing: border-box;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.237);
}

.navbar .box1 {
    width: 50rem;
    height: 12rem;
    padding-top: 2rem;
    padding-left: 6rem;
    box-sizing: border-box;
    /* background-color: green; */
}

  .navbar .box1 img {
        margin: 0;
        height: 9rem; 
    }

.navbar .box2 {
    width: 50rem;
    height: 12rem;
    text-align: right;
    overflow-y: hidden;
    box-sizing: border-box;
    /* background-color: rgb(164, 202, 164);  */
}

.navbar .box2 img {
    margin: 0;
    height: 15rem; 
}


/* Main */

.section-1 {
    width: 126rem;
    /* height: 50rem; */
    padding-top: 15rem;
    max-width: 126rem;
    padding-left: 27rem;
    padding-right: 27rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
    background-color: antiquewhite;
}

.section-1 .textbox {
    display: block;
    margin-bottom: 8rem;
}

.section-1 h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: -0.4rem;
    letter-spacing: -0.22rem;
    text-transform: uppercase;
}

.section-1 p {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.section-1 a {
    color: green;
    font-family: MyFont2;
    text-decoration: none;
}

.section-1 .distinct {
    margin-top: 2rem;
}

form {
    max-width: 65rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 5rem;
    text-align: center;
    margin: auto;
    margin-top: 4rem;
    margin-bottom: 5rem;
    border-radius: 2rem;
    box-sizing: border-box;
    background-color: rgb(208, 245, 214);
}

.form-group{
    position: relative;
}

input, textarea {
    width: 50rem;
    outline: none;
    border: none;
    padding: 1.5rem;
    padding-top: 3rem;
    font-size: 17px;
    border-radius: 1rem;
    font-family: MyFont1;
}

textarea {
    height: 20rem;
}

label {
    top: 2rem;
    left: 2.5rem;
    position: absolute;
    font-size: 1.3rem;
    font-family: MyFont1;
    opacity: 20%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

button {
    width: 15rem;
    height: 5rem;
    outline: none;
    border: none;
    color: white;
    font-size: 2rem;
    margin: auto;
    margin-top: 2rem;
    font-family: MyFont2;
    border-radius: 1rem;
    background-color: green;
}

.note {
    margin-top: 4rem;
    margin-right: 15rem;
    margin-left: 15rem;
    font-style: italic;
}

/* Footer */

.footer {
    width: 100%;
    max-width: 126rem;
    text-align: center;
}


/* Media Query */

/* Mobile 430px */

@media screen and (max-width:430px) {
    html {
        margin: 0;
        font-size: 62.5%;
        overflow-x: hidden;
        justify-content: center;
    }

    body {
        padding: none;
        margin: auto;
        width: 430px;
        max-width: 430px;
        overflow-x: hidden;
    }

    /* Navbar */

   .nav {
        width: 430px;
        height: 12rem;
        max-width: 430px;
        z-index: 999;
        position: fixed;
        box-sizing: border-box;
        /* background-color: rgb(207, 207, 207); */
        background-image: linear-gradient( to right, green, #faf1e1 78%);
    }

    .navbar {
        display: flex;
        padding-left: 0;
        /* justify-content: space-between; */
        box-sizing: border-box;
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.237);
    }

    .navbar .box1 {
        width: 45rem;
        height: 12rem;
        box-sizing: border-box;
        /* background-color: green;   */
    }

    .navbar .box2 {
        width: 40rem;
        height: 12rem;
        text-align: left;
        padding-right: 17rem;
        overflow-y: hidden;
        box-sizing: border-box;
        /* background-color: rgb(164, 202, 164);   */
    }

    .navbar .box2 img {
        margin: 0;
        height: 12rem; 
    }


    /* Main */

    .section-1 {
    width: 100%;
    /* height: 50rem; */
    padding-top: 15rem;
    max-width: 430px;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
    background-color: antiquewhite;
    }

    .section-1 .textbox {
        display: block;
        margin-bottom: 4rem;
    }

    .section-1 h1 {
        font-size: 3rem;
        text-align: center;
        margin-bottom: -0.4rem;
        letter-spacing: -0.20rem;
        line-height: 3rem;
        text-transform: uppercase;
    }

    .section-1 p {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 2rem;
        text-align: center;
    }

    form {
        max-width: 65rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 3rem;
        padding-left: 3rem;
        padding-right: 7rem;
        text-align: center;
        margin: auto;
        margin-top: 4rem;
        margin-bottom: 4rem;
        border-radius: 2rem;
        box-sizing: border-box;
        background-color: rgb(208, 245, 214);
    }

    input, textarea {
        width: 100%;
        outline: none;
        border: none;
        max-width: 35rem;
        padding: 1.5rem;
        padding-left: 3rem;
        padding-top: 3rem;
        font-size: 17px;
        border-radius: 1rem;
        font-family: MyFont1;
    }

    button {
        width: 15rem;
        height: 5rem;
        outline: none;
        border: none;
        color: white;
        font-size: 2rem;
        margin: auto;
        margin-left: 6rem;
        margin-top: 2rem;
        font-family: MyFont2;
        border-radius: 1rem;
        background-color: green;
    }

    /* Section 2 */

    .section-2 {
        width: 100%;
        max-width: 430px;
        text-align: center;
    }

    .note {
        margin-top: 4rem;
        margin-right: 1rem;
        margin-left: 1rem;
        margin-bottom: 0;
        font-style: italic;
    }

    .footer {
        width: 100%;
        padding: 0;
        max-width: 430px;
        text-align: center;
    }

}