:root{
    --button-text: white;
    --button-color: #1322aa;
    --button-border: #172884;
} 

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    margin-left: 10rem;

}

.HS-container {
    margin-right: 350px;
}

h1, h2, h3{
    font-size: 2.5rem;
}

p {
    font-size: 1.7rem;
}

button {
    font-size: 1.2rem;
    margin-top: 20px;
    width: 12rem;
    padding: 10px;
    border-radius: 5px;
    color: var(--button-text);
    background-color: var(--button-color);
    border: 0.1rem solid var(--button-border);
}

.HS-submit {
    margin-top: 10px;
}

ul {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #b2ffff;
    border: solid #b2ffff;
    width: 40rem;
    padding: 1.15rem;
}

#clear-HS {
    margin-left: 2rem;
}

button:hover:focus:active {
    background-color: #648be8;
    color: white;
}

#HighScoresL {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.High-Score {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}

