@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600&family=Open+Sans:wght@400;500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    /* Primary */

    --Very_Dark_Blue: hsl(243, 87%, 12%);
    --Desaturated_Blue: hsl(238, 22%, 44%);

    /* Accent */

    --Bright_Blue: hsl(224, 93%, 58%);
    --Moderate_Cyan: hsl(170, 45%, 43%);

    /* Neutral */

    --Light_Grayish_Blue: hsl(240, 75%, 98%);
    --Light_Gray: hsl(0, 0%, 75%);
}

body{
    font-family: 'Open Sans', 'Golos Text', Arial, Helvetica, sans-serif;
    flex-direction: column;
    font-size: 20px;
    background-color: beige;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.goback{
    text-decoration: none;
    background-color: var(--Very_Dark_Blue);
    color: white;
    padding: 0.8em 2em;
    margin-bottom: 2em;
    border-radius: 5px;
}

.goback:hover{
    background-color: orange;
    transition: ease 0.2s;
  }