@import url('https://fonts.googleapis.com/css2?family=Happy+Monkey&display=swap');

body{
    font-family: Happy Monkey;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    font-size: 55px;
    align-self: center;
    text-align: center;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

ul{
    list-style: none;
    padding: 0;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

button{
    font-size: 35px;
    font-family: Happy Monkey;
    border-radius: 15px;
    border-style: none;
    background-color: rgb(173, 173, 173);
    transition: transform 0.2s;
    padding: 10px;
    width: fit-content;
}

button:hover{
    transform: scale(1.1,1.1);
    cursor: pointer;
}

button:active{
    transform: scale(1, 1);
}

li {
    max-height: fit-content;
    margin: 20px;
    border-radius: 25px;
    text-align: center;
    word-wrap: break-word;
}

a{
    text-decoration: none;
    color: black;
}

#catImg{
    margin-top: 0;
}

img{
    align-self: center;
    margin: 30px;
    height: 200px;
    transition: transform 0.5s;
}

@media (max-width: 480px) {
    body{
        font-size: 15px;
    }
    h1{
        font-size: 35px;
    }
    button{
        font-size: 25px;
    }  
    section{
        width: 300px;
    } 
    ul{
        width: 300px;
        align-self: center;
    }
    li{
        height: fit-content;
    }
}