/*
    Images credit: https://www.pngwing.com/en/free-png-kfbcw
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Bungee+Inline&display=swap');

body {
    font-family: 'Bungee Inline', cursive;
    text-align: center;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5cb1d2;
}

.container {
    display: flex;
    flex-direction: column;
    width: 450px;
    cursor: default;
}

.container img {
    width: 250px;
    max-height: 95%;
}

.header {
    font-family: 'Bungee Inline', cursive;
    color: #046491;
    background-color: #dceef7;
}

.pet-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 10px solid #dceef7;
    border-right: 10px solid #dceef7;
    height: 300px;
    vertical-align: middle;
    background-color: white;
}

.game-area {
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    padding: 10px;
}

.game-scores {
    display: flex;
    font-size: 14pt;
}

.game-left {
    width: 50%;
    text-align: right;
}

.game-right {
    width: 50%;
    text-align: left;
    padding-left: 10px;
}

.buttons {
    background-color: white;
}

.buttons button {
    background-color: #19496B;
    padding: 15px;
    border: 0px;
    cursor: pointer;
    color: white;
    font-family: 'Bungee Inline', cursive;
    font-size: 18pt;
}

#pet-input {
    text-align: left;
    font-family: 'Bungee Inline', cursive;
    padding: 15px;
    width: 100px;
    border: 0px;
    border-radius: 5px 5px 0 0;
}

#pet-input::placeholder {
    color: #e5e5e5;
}

#message {
    font-family: 'Bungee Inline', cursive;
    color: yellow;
    background-color: #ba0505;
    font-size: 24pt;
    padding: 15px;
    visibility: hidden;
}

.try-again {
    padding: 25px;
    background-color: #bfbfbf;
    cursor: pointer;
}