:root {
    --focus: #D7AEA7;
    --hover: #F0C7C0;
    --hover-background: #F2F2F2;
    --warning: #DA7361;
    --grey-text: #606266;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--hover-background);
    font-family: 'DM Sans', sans-serif;
}

h1 {
    font-size: 4em;
}

h2 {
    font-size: 2.2em;
    margin: 0;
}

h3 {
    font-size: 1.4em;
    margin: 0;
}

label {
    font-size: 1em;
}

p {
    font-size: 1.1em;
    margin: 0;
}

select:hover,
input[type="text"]:hover,
textarea:hover {
    border-color: var(--hover);
    outline: none;
}

select:focus,
input[type="text"]:focus,
textarea:focus {
    border-color: var(--focus);
    outline: none;
}

@media screen and (max-width: 730px) {
    * {
        @-moz-document url-prefix() {
            tap-highlight-color: transparent;
        }
        -webkit-tap-highlight-color: transparent;
    }
    
    h3 {
        font-size: 1.2em;
    }
}