@import url('./core.css');

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all ease .3s;
}

.container {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    justify-content: center;
    gap: 35px;
    padding: 35px;
}

.container .box {
    width: 290px;
    height: 80px;
    padding: 1rem 2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    transition: all ease .3s;
    background-color: var(--box-color);
    color: var(--text-color);
}

.container .box img {
    margin: 5px 10px;
    width: 25%;
    height: 80px;
    object-fit: contain;
    transition: all ease .3s;
    filter: invert(var(--invert));
}

.container .box .title {
    font-size: 24px;
    font-weight: 350;
    width: 75%;
}

.container .box:hover {
    box-shadow: 0 0 25px 5px var(--glow);
    transform: scale(1.01);
}