.home-devices {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.devices-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.device-tile {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.device-tile h3 {
    margin: 0;
    padding: 0;
    line-height: 1rem;
}

.device-tile p {
    color: #444444;
    font-size: 0.9rem;
    line-height: 1.7rem;
}

.content-start {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: start;
    gap: 1rem;
}

.content-start img {
    max-height: 100%;
    max-width: 100%;
}

.content-center {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.content-center img {
    margin: auto 0px;
    align-self: center;
    background-position: center;
    background-size: contain;
    max-height: 70%;
    max-width: 70%;
}

.expanded {
    flex: 1;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.min-box {
    height: 20%;
    width: 20%;
    max-height: 20%;
    max-width: 20%;
}

.max-20w {
    max-width: 20%;
}

.max-20h {
    max-height: 320px;
}

.double-height-box {
    height: 40% + 2rem;
    width: 20%;
    max-height: 40% + 2rem;
    max-width: 20%;
}

.double-width-box {
    width: 40% + 2rem;
    height: 20%;
    max-width: 40% + 2rem;
    max-height: 20%;
}


.device-image {
    max-height: 100%;
    max-width: 100%;
    flex: 1;
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    margin: 0;
    background-position: center;
    background-size: contain;
}

.margin-left {
    margin-left: auto;
}

.margin-bottom {
    margin-bottom: auto;
}

.margin-top {
    margin-top: auto;
}

@media (max-width: 768px) {
    .devices-row {
        flex-direction: column;
    }

    .min-box,
    .double-width-box,
    .double-height-box {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: none;
    }

    .flex-2 {
        flex: 1;
    }

    .max-20h {
        max-height: none;
    }
}