@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {

    margin:0;
    padding:0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    background-color: #f2efea;
    width: 100vw;

}

a {
    
    color:inherit;

}

input {

    width: 100%;
    padding:15px;
    box-sizing: border-box;
    border: none;
    font-family: inherit;
    font-size:18px;
    border-radius:5px;
    border:1px solid #ccc;
    
}

input:focus {

    outline: none;

}

button {

    background-color: #8c5a32;
    color:white;
    border:none;
    font-family: inherit;
    padding:15px;
    box-sizing: border-box;
    width: 100%;
    font-size:18px;

}

select {

    width: 100%;
    padding:15px;
    box-sizing: border-box;
    border: none;
    font-family: inherit;
    font-size:18px;
    border-radius:5px;
    border:1px solid #ccc;

} 

textarea {

    width: 100%;
    padding:15px;
    box-sizing: border-box;
    border: none;
    font-family: inherit;
    font-size:18px;
    border: 1px solid #ccc;
    border-radius:5px;

}

textarea:focus {

    outline: none;

}