@media (max-width: 768px) {
    body {
        min-height: 80vh;
    }
    .content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    #output {
        width: 270px;
        height: 270px;
    }
    #around__output {
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 1024px) {
    .content {
        gap: 3rem;
    }
}