* {
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
}

body {
    background-image: url('images/background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.title {
    padding-top: 5px;
    font-size: 75px;
    margin-bottom: 10px;
}

.title, #output, .finalResult {
    text-align: center;
}

#output {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 50px;
    border: 5px solid rgb(27, 27, 31);
    background-color: white;
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
    margin: auto;
    margin-bottom: 20px;
}


.outcome, .reset {
    text-align: center;
}

.selection {
    margin: 5px;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.btn {
    cursor:pointer;
}

.score {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.playerSelection {
    height: 250px;
    display: flex;
    justify-content: space-around;
}

.playerSelectionText {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
}

.github {
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.github:hover {
    transform: translateY(-5px);
}

.finalOutcome {
    border: 5px solid rgb(27, 27, 31);
    background-color: white;
    font-size: 25px;
    margin-bottom: 10px;
}

#reset {
    height: 35px;
    width: 100px;
}