/*General*/

:root {
    --primary-color: dimgray;
    --secondary-color: lightgray;
    --tertiary-color: whitesmoke;
    --primary-font-family: 'Times New Roman';
    --secondary-font-family: 'Brush Script MT';
    --tertiary-font-family: sans-serif;
}

*{
    margin: 0;
    padding: 0;
}

body{
    height: auto;
    font-family: var(--tertiary-font-family);
    background-color: black;
    color: white;
}

h1 {
    font-family: var(--primary-font-family);
    text-transform: uppercase;
    color: rgb(238, 61, 73);
}

h2 {
    font-family: var(--secondary-font-family);
}

footer b{
    color: rgb(238, 61, 73);
}

#center{
    text-align: center;
}

.language{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    margin-top: 95vh;
    margin-right: 0px;
    background: none;
    border: none;
    font-size: medium;
    font-weight: bold;
    cursor: pointer;
    font-size: large;
    color: white;
    transition: 0.5s;
    text-shadow: 1px 1px 2px black;
    padding: 12px 34px;
    background-color: black;
}

.language:hover{
    color: red;
}