body {
    background-color: rgb(0, 58, 0);
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
}

header {
    background-color: rgb(0, 28, 0);
    height: fit-content;
}

header h1 {
    margin: 0;
    text-align: center;
    color: cornflowerblue;
}

.buttons {
    display: flex;
    width: 80%;
    margin: auto;
    padding-top: 1%;
    padding-bottom: 20px;
    gap: 20px;
}

.buttons a {
    flex: 1;
    height: 50px;
    border-radius: 100px;
    background-color: yellow;
    color: hotpink;
    text-align: center;
    align-content: center;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid grey
}

.buttons a:hover {
    padding: 20px;
    font-size: 40px;
    background-color: white;
}


html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    transition: background 0.03s;
    background-color: white;
}

#rage-bar {
    width: 300px;
    height: 25px;
    background: #eee;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin: 20px auto;
}

#rage-fill {
    width: 0%;
    height: 100%;
    background: red;
    transition: width 0.3s ease;
}

#rage-container {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 430px;
}

#emoji-explosion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.emoji {
    position: absolute;
    font-size: 24px;
    animation: spin 2s linear infinite, bounce 1s ease-in-out infinite alternate;
    will-change: transform;
}

.bouncing-word {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
    animation: bounceWord 1s ease-in-out infinite alternate;
    z-index: 10000;
    pointer-events: none;
}

button {
    height: initial;
    background-color: lightgrey;
    color: initial;
    padding: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

@keyframes bounceWord {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

footer {
    background-color: darkred;
    height: 200px;
    color: white;
    text-align: center;
    font-family: sans-serif;
}