.discord-container {
    width: 338px;
    height: 284px;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #fff;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
}
.discord-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(88, 101, 242);
    padding: 20px;
    flex-shrink: 0;
}
.discord-logo {
    width: 124px;
    height: 34px;
    transition: opacity .25s ease-out;
}
.discord-logo:hover {
    opacity: .6;
}
.discord-members-count {
    font-weight: 700;
}
.discord-main-content {
    flex-grow: 1;
    background-color: rgb(30, 31, 34);
    padding-top: 18px;
    padding-inline: 20px;
    padding-bottom: 0;
    overflow: hidden;
}
.discord-channel-name {
    font-size: 17px;
    line-height: 17px;
    margin-bottom: 12px;
}
.discord-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(138, 142, 148);
    background-color: rgb(30, 31, 34);
    padding: 6px 6px 6px 20px;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px -1px 18px 0px, rgba(0, 0, 0, 0.2) 0px -1px 0px 0px;
}
.discord-footer-desc {
    color: rgb(138, 142, 148);
    font-weight: 500;
    opacity: .5
}
.discord-btn-join {
    width: 120px;
    height: 30px;
    border: 1px solid #212325;
    background-clip: padding-box;
    box-shadow: rgba(255, 255, 255, 0.04) 0px 1px 0px 0px inset;
    transition: opacity .25s ease-out;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    border-radius: 4px;
}
.discord-btn-join:hover {
    opacity: .6;
}