html, body {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    font-family: 'Comic Sans MS';
}

.navBar {
    font-family: 'Comic Sans MS';
    width: 100%;
    border: none;
    border-bottom: solid;
    background-color: rgba(190, 250, 255, 0.25);
    border-color: gray;
    margin: 0px;
    padding: 10px;
}

.catpeeImage {
    opacity: 1;
    transition: opacity 0.12s;
}

.catpeeImage:hover {
    opacity: 0.8;
}

    .navBar h2 {
        display: inline;
    }

    .navBar button {
        font-family: 'Comic Sans MS';
        font-size: large;
        margin: 10px;
        height: 50px;
        width: 100px;
        border-radius: 10px;
        border-style: solid;
        background: linear-gradient(-45deg, cornflowerblue, white);
    }

    .navBar button:hover {
        background: linear-gradient(-45deg, lightblue, turquoise);
    }

    .navBar button:active {
        opacity: 0.8;
    }

img {
    user-select: none;
    margin: 5px;
}


.woahButton {
    background-color: rgb(0, 128, 255);
    color: white;
    border: none;
    height: 50px;
    width: 270px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.15s, box-shadow 0.15s;
    box-shadow: 5px 5px 5px gray;
}

.woahButton:hover {
    background-color: rgb(00, 192, 255);
    box-shadow: 5px 5px 5px black;
}

.backButton {
    font-family: 'Comic Sans MS';
    background-color: aquamarine;
    border: none;
    height: 30px;
    width: 90px;
    transition: background-color 0.15s;
    border-radius: 100px;
}

.backButton:hover {
    background-color: cornflowerblue;
}

.fishButton {
    user-select: none;
    font-family: 'Comic Sans MS';
    width: 100px;
    height: 30px;
    border-radius: 200px;
    border: none;
    background-color: aquamarine;
    color: black;
    transition: background-color 0.15s;
}

.fishButton:hover {
    background-color: cornflowerblue;
}

.releaseButton {
    user-select: none;
    font-family: 'Comic Sans MS';
    width: 100px;
    height: 30px;
    border-radius: 200px;
    border: none;
    background-color: indianred;
    color: black;
    transition: background-color 0.15s, color 0.15s;
}

.releaseButton:hover {
    background-color: darkred;
    color: white;
}

.fihButton {
    user-select: none;
    align-content: center;
    align-self: center;
    border: none;
    border-radius: 5px;
    background-color: gray;
    padding: 5px;
    border-style: solid;
    border-color: black;
    transition: opacity 0.1s, box-shadow 0.1s;
}

.fihButton:hover {
    opacity: 0.8;
    box-shadow: 5px 5px 5px black;
}

.fihButton:active {
    opacity: 0.5;
    box-shadow: 0px 0px 0px white;
}