@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

*{
    font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --main-bg-color: rgba(0, 0, 0, 0.5);
    --main-fo-color: white;
}
body {
    background: #EDF2F7;
    color: #202020;
}

h1{
    font-weight: normal;
    font-family: 'Oswald';
}

a{
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
a:hover{    
    text-decoration: underline;
}
input{
    font-size: inherit;
    border: 1px solid gray;
    border-radius: 3px;
    padding: 0 5px;
}

input:focus {
    border-color: var(--main-bg-color);
    outline: none;
}

button{
	outline: none;
    border: 1px solid gray;
    border-radius: 2px;
    font-size: inherit;
    appearance: none;
    cursor: pointer;
}
button:active {
    color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}
button:disabled{
    color: gray;
    border-color: gray;
    background: lightgray;
    cursor: default;
}

textarea{
    resize: none;
    outline: none;
    font: inherit;
}

select{
    font: inherit;
    outline: none;
}