@import 'https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap';

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

img {
    max-width: 70vw;
    max-height: 70vh;
}

button {
    cursor: pointer;
    font-size: 1.6rem;
    background-color: transparent;
    border: 2px solid black;
    border-radius: .2rem;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    transition: 0.5s ease-in-out;
    background-color: black;
    color: white;
}
