:root {
    background-color: rgb(29, 26, 26);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    font-family: 'Winky Rough';
    overflow: hidden;
}

h1 {
    font-size: 5.4rem;
    color: whitesmoke;
    margin-bottom: 2rem;
}

h2 {
    font-size: 4.2rem;
    margin-bottom: 4rem;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.btn {
    font-size: 2.4rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(28, 26, 26);
    /*background: linear-gradient(90deg, rgb(18, 92, 255) 0%, rgb(0, 102, 255) 100%); */
    background-color: #bbbbbb;
    border-radius: 2rem;
}

.btn:hover {
    cursor: pointer;
    box-shadow: 0 0 1rem #ff3cac;
    transition: transform 150ms;
    transform: scale(1.03);
}

.btn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

#highscore-btn {
    /*background: linear-gradient(90deg, rgb(255, 247, 9) 0%, rgb(240, 221, 6) 100%);*/
    background-color: #bbbbbb;
}

#highscore-btn:hover {
    box-shadow: 0 0 1rem #ff3cac;
}

body {
    background-image: url(./compositionImage.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.header-banner {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-block;
    margin: 2rem auto;
    text-align: center;
}