:root {
    --palette-color-1: black;
    --palette-color-2: #2A9D8F;
    --palette-color-3: #F4A261;
    --palette-color-4: #E76F51; 
    --palette-color-5: white;
}

html {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
    color: var(--palette-color-1);
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

img {
    height: 50px;
}

a {
    color: currentColor;
    text-decoration: none;
}