* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    color: black;
    transition: all 0.5s;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

main {
    margin-top: 100px;
    width: 50vw;
}

p {
    padding: 15px;
}

h1 {
    text-align: center;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

#cage p {
    margin-top: 100px;
}

#cage:hover {
    background-color: black;
}

.container {
    border: 1px solid black;
    max-height: 80vh;
    max-width: 80vw;
    padding: 20px;
    height: 300px;
    overflow: hidden;
}

.container:hover {
    height: 70vh;
}

/*smaller screen body widths */
@media (max-width: 900px) {
    main {
        width: 90vw;
    }
    .popover-content {
        max-width: 80vw;
    }
}