
body{
    margin: 0 auto;
    background-color: antiquewhite;
    font-family: "Londrina Shadow", sans-serif;
}

@media (max-height: 700px) {
    body {
        transform: scale(0.6);
    }
  }
  

.page{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.middlething{
    width: 500px;
    max-width: 500px;
    background-color: white;
    border-radius: 7px;
    padding: 15px 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.374);
}

.catbox{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat{
    border-radius: 7px;
    max-height: 500px;
    max-width: 500px;
    object-fit: cover;
}

.catbutton{
    padding: 10px 50px;
    background-color: white;
    border: 1px solid gray;
    border-radius: 7px;
    font-family: "Roboto", serif;
}

.catbutton:active{
    background-color: antiquewhite;
}
