
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --textColor:#262626;
    --btn-bg-color:#febd44;
    --box-shadow-one:0px 2px 20px -10px #000;
}

body{
    background-color: rgb(255, 255, 255);
    
    font-family: sans-serif;
    height: 100vh;
}

section{
    height: 100%;
    
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
}

section > .navbar{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section > .navbar > h1{
    margin-left: 10%;
    font-size: 2.1rem;
}

section > .navbar > .rate-and-review{
    margin-right: 10%;
    height: 50px;
    padding: 10px;
    border-radius: 30px;
    color: var(--textColor);
    box-shadow: var(--box-shadow-one);

}
section > .navbar > .rate-and-review:hover{
    background-color: var(--btn-bg-color);
    box-shadow: var(--box-shadow-one);
}

section > .navbar > a.rate-and-review {
    color: var(--textColor);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    
}

section > .get-players{
    align-self: center;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    padding: 8px 0px 8px 15px;
    border-radius: 8px;
    box-shadow: var(--box-shadow-one);
}

section >.get-players > .players-and-names > select{
   height: 30px;
   width:80%;
   font-size: 0.9rem;
   display: flex;align-items: center;justify-content: center;
}

section >.get-players > .players-and-names > .player-names{
    height: 30px;
    width: 25px;
    display: flex;align-items: center;justify-content: center;
    background-color: white;

    
}

section > .get-players > .players-and-names{
    display: flex;
    align-items: center;
    width: 60%;
}

section > .start-game-btn{
    justify-self: center;
    align-self: center;
    
}

section >.start-game-btn > button{
    border-radius: 0;
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: none;
    border: solid white 3px;
}

section >.start-game-btn > button > a{
    text-decoration: none;
    width: 100%;
    height: 100%;
}
section >.start-game-btn > button{
    box-shadow: var(--box-shadow-one);
    border-radius: 100px;
}

section >.start-game-btn > button:hover{
    cursor: pointer;
    background-color:var(--btn-bg-color);
    border: solid var(--btn-bg-color) 3px;
}



section > .instructions{
    
    border-radius: 20px;
    margin: 10px 30px;
    padding: 10px 30px;
    text-align: justify;
    box-shadow: var(--box-shadow-one);
}

section > .instructions >h3{
    margin-bottom: 4px;
    color: var(--textColor);
}
section > .instructions > p{
    margin-bottom: 20px;
    color: var(--textColor);
}

