* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Before game starts */

.start {
    margin-left: 20%;
    margin-top: 5%;
    text-align: center;
    width: 50%;
    background-color: rgb(255, 170, 251);
    padding: 5%;
    padding-top: 1%;
    border: solid 8px black;
    border-radius: 20px;
}

.start h1 {
    padding-top: 0%;
    padding-bottom: 10%;
}

.start button {
    width: 140px;
    height: 40px;
    margin-top: 7%;
    border: solid 2px black;
    transition: all .2s ease-in-out;
}

.start button:hover {
    cursor: pointer;
    transform: scale(1.2);
}

/* After pressing start */

.game {
    background-color: rgb(255, 170, 251);
    width: 50%;
    margin-left: 20%;
    margin-top: 5%;
    padding: 5%;
    text-align: center;
    border: solid 8px black;
    border-radius: 20px;
}

.game h1 {
    margin-top: 0%;
    margin-bottom: 5%;
    background-color: white;
    border: solid 3px black;
    border-radius: 10px;
}

.game button {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 60%;
    height: 40px;
    border: solid 2px black;
    transition: all .2s ease-in-out;
}

.game button:hover {
    cursor: pointer;
    transform: scale(1.05);
}

/* Start of Clock */

.together {
    display: flex;
    flex-direction: row;
}

header {
    display: flex;
    justify-content: space-between;
    margin-left: 25%;
    margin-top: 2%;
    width: 50%;
}

/* Start of End Game and Scoreboard */

.end {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 8%;
    padding-top: 2%;
    margin-left: 20%;
    width: 50%;
    margin-top: 10%;
    text-align: center;
    justify-content: center;
    background-color: rgb(255, 170, 251);
    border: solid 8px black;
    border-radius: 20px;
}

.togetherend {
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 50%;
    margin-left: 25%;
}

.end form {
    margin-top: 3%;
    margin-bottom: 4%;
}