body {
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Comic Sans MS', 'Chalkduster', 'cursive';
}

.container {
    text-align: center;
}

h1 {
    font-size: 5rem;
    color: #ff6600;
    text-shadow: 3px 3px 0px #000;
    position: relative;
    display: inline-block;
}

.exclamations {
    position: absolute;
    top: -1.5rem;
    right: -2.5rem;
    font-size: 3rem;
    color: red;
    transform: rotate(15deg);
}

#bonkText {
    display: inline-block;
    transition: transform 0.1s ease-in-out;
}

#bonkText.squish {
    transform: scale(1.2, 0.7);
}

.ca {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    word-wrap: break-word;
}

.bonk-button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 9px #993d00;
    transition: all 0.1s ease;
}

.bonk-button:active {
    background-color: #e65c00;
    box-shadow: 0 5px #662a00;
    transform: translateY(4px);
}

.bonk-text {
    position: absolute;
    font-size: 5rem;
    font-weight: bold;
    color: #ff6600;
    text-shadow: 3px 3px 0px #000;
    pointer-events: none;
    animation: fadeOut 1s forwards;
    user-select: none;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}


.bonk-gif {
    position: absolute;
    max-width: 300px;
    border-radius: 10px;
    pointer-events: none;
    user-select: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}


.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.footer a {
    color: #ff6600;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}