:root {
    background-image: url("../Images/CowboyBack.jpg");
}

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

h1 {
    font-size: 5.4rem;
    color: #fff;
    margin-bottom: 5rem;
}

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

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

.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;
}

#readysetgo {
    padding: 1.5rem 1.5rem;
    background: linear-gradient(#828180, #603D05, #713A04, #828180);
    border-radius: 8px;
}

.btn {
    font-size: 2.4rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color:#fff;
    border-radius: 10px;
}

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

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

#play-btn {
    font-family: "bungee", sans-serif;
    background: linear-gradient(#828180, #713A04, #603D05);
}

#highscore-btn {
    font-family: "bungee", sans-serif;
    background: linear-gradient(#603D05, #713A04, #828180);
}

/* End html css begins */

.end-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30rem;
}
input {
    margin-bottom: 1rem;
    width: 20rem;
    padding: 1.5rem;
    font-size: 1.8rem;
    border: none;
    box-shadow: 0 0.4rem 1.4rem 0 #342205;
}

input::placeholder {
    color: #aaa;
}

.fa-home {
    margin-left: 1rem;
    font-size: 2rem;
    color:blueviolet;
}

#username {
    margin-bottom: 3rem;
    width: 100%;
    outline: none;
}

#end-text {
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}
    
#homeBtn {
background: linear-gradient(#603D05, #713A04, #828180);
}

#playAgainBtn {
    background: linear-gradient(#828180, #713A04, #603D05);
}

#saveScoreBtn {
    background: linear-gradient(#828180, #603D05, #713A04, #828180);
    border: none;
}

/* end html css closes */