@import "./const.css";

.container {
    background-color: var(--buff-color);
}

.content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

@media all and (max-width: 600px) {
    .content div {
        flex: 1 !important;
        position: relative;
    }
}

@media all and (max-width: 400px) {
    .content {
        flex-direction: column;
    }

    .content div:first-child {
        min-height: 200px;
        position: relative;
    }
}