body {
    background-color: #2F2FA2;
    font-family: 'Fjalla One', sans-serif;
}

#main {
    border: 1px solid black;
}

p {
    font-size: 190%;
    color: rgb(255, 255, 255);
}

#footer {
    margin-left: 25%;
    margin-right: 25%;
}

#footer p {
    font-size: 100%;
}

#new-game {
    display: block;
    border: 1px;
    text-align: center;
}

button {
    color: rgb(255, 255, 255);
    background-color: #F64C72;
    border: none;
    padding: 15px;
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
}

button:hover {
    background-color: rgb(255, 15, 67);
    cursor: pointer;
}

#player-container {
    text-align: center;
    display: block;
}

.player {
    display: inline-block;
    padding: 30px;
    width: 25%;
    border: 1px solid black;
    margin-right: 0px;
    margin-left: 0px;
}

.bottom {
    display: inline-block;
    border: 1px;
}

#bottom-container {
    text-align: center;
    display: block;
}

#current-left {
    margin-right: 15px;
}

#current-right {
    margin-left: 15px;
}

#winner-container {
    text-align: center;
    background-color: #F64C72;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 20%;
    padding: 25px 25px 25px 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* make winner-container pulsate */
@keyframes pulse_animation {
    0% { transform: scale(1); }
    30% { transform: scale(1); }
    40% { transform: scale(1.08); }
    50% { transform: scale(1); }
    60% { transform: scale(1); }
    70% { transform: scale(1.05); }
    80% { transform: scale(1); }
    100% { transform: scale(1); }
}

.pulse {
    animation-name: pulse_animation;
    animation-duration: 3000ms;
    transform-origin:70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#die-p1 {
    background: #F64C72;
    width: 100px;
    height: 100px;
}

#die-p2 {
    background: #F64C72;
    width: 100px;
    height: 100px;
}