.unitydorm-header {
    background: #20524F;
    margin: 0 6px;
    padding: 5px 0;
    border-radius: 0 0 10px 10px;
}

.unitydorm-image {
    width: 40px;
    height: 40px;
    border-radius: 7px;
}

.description {
    background-color: #E76F51;
    color: #20524F;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0 0 10px 10px;

    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

/* Extra small devices (phones, up to 360px) */
@media (max-width: 360px) {
    .unitydorm-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .unitydorm-image {
        width: 60px;
        height: 60px;
    }
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) {
    .unitydorm-image {
        width: 70px;
        height: 70px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .unitydorm-image {
        width: 85px;
        height: 85px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .unitydorm-image {
        width: 100px;
        height: 100px;
    }
}