* {
    font-family: sans-serif;
}

body {
    color: var(--text-color);
}

h1, h2, h3, h4 {
    margin: 10px 0;
}

p {
    font-size: 20px;
    line-height: 25px;
    margin: 10px 0;
}

a {
    color: var(--text-link-color);
    text-decoration: underline rgba(0, 0, 0, 0);
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
}


.black {
    color: black;
}
.red {
    color: var(--red-color);;
}
.gray {
    color: gray;
}


input[type='text'], input[type='password'], input[type='number'], textarea{
    height: 40px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 20px;
    border-radius: 10px;
    padding: 0 8px;
    outline: none;
    border: 2px solid var(--text-color);
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.2s ease;
}
input[type='text']:focus, input[type='password']:focus, input[type='number']:focus, textarea:focus {
    border: 2px solid rgb(0, 80, 255);
    box-shadow: 0 0 5px var(--shadow-color);
}

input[type='text']:read-only, input[type='password']:read-only, input[type='number']:read-only textarea:read-only {
    background-color: var(--input-readonly-background-color);
    border: 2px solid var(--input-readonly-border-color);
}

input[type='button'], input[type='submit'] {
    width: 200px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    background-color: rgb(0, 80, 255);
    color: white;
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.2s ease;
}
input[type='button']:hover, input[type='submit']:hover {
    background-color: rgb(0, 120, 255);
}

input[type='button'].red, input[type='submit'].red {
    background-color: rgb(255, 50, 50);
}
input[type='button'].red:hover, input[type='submit'].red:hover {
    background-color: rgb(253, 85, 85);
}

input[type='button'] {
    color: var(--text-color);
    border: 2px solid var(--text-link-color);
    background-color: var(--background-color);
}
input[type='button']:hover {
    background-color: var(--hover-color);
}

textarea {
    font-size: 20px;
    font-family: inherit;
}