html {
    font-size: 3.125vw;
    /*
      計算式：　10(px) / 320(px) * 100 = 3.125
      画面幅320pxの時に "font-size: 10px" 相当になる
    */
    width: 100%;
    height:100%;
}

body {
    margin:15px;
    background: linear-gradient(wheat, rgb(240, 205, 131)) fixed;
    font-size: 1.6rem;
    width: 90%;
    height:90%;
    background: antiquewhite
}

form {
    font-size:1.5rem;
}

button {
    margin-left: 40%;
}

input#name, input#email {
    width: 16rem;
    margin-left: 0.5rem;
}

select {
    width: 23.5rem;
    margin-left: 0.5rem;
}

textarea {
    margin-left: 0.5rem;
}

