body {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    background-color: #3b3752;
    font-weight: 400;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: column;
}
.wrap {
    display: flex;
}

.title {
    text-align: center;
    border-bottom: 1px solid #5d5d5d;
    padding: 10px;
    padding-bottom: 15px;
}

.header {
    margin-bottom: 20px;
    padding: 20px 40px;
    text-align: right;
    background-color: #3b3752;
    border: 1px solid #bbbbbb;
    color: #000;
    border-radius: 10px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
}

.header a {
    color: #fff;
    font-weight: 700;
}

.canban_group_wrapper {
    width: 200px;
    max-width: 200px;
    padding: 10px;
    background-color: #3b3752;
    border: 1px solid #bbbbbb;
    color: #fff;
    border-radius: 10px 0 0 10px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
}

.canban_group-link {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.canban_group {
    border-radius: 10px;
    margin: 10px;
    border-radius: 10px;
    padding: 5px 7px;
}

.canban_group:hover {
    background-color: #8f8997;
}

.canban_wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #7261a8;
    padding: 20px;
    color: #000;
    border-radius: 0 10px 10px 0;
    border: 1px solid #bbbbbb;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.2);
}

.canban {
    background-color: #e8e9db;
    border-radius: 10px;
    padding: 10px 20px;
    max-width: 200px;
    min-width: 200px;
    margin: 10px;
    overflow: hidden;
    -webkit-box-shadow: 4px 4px 11px 8px rgba(34, 60, 80, 0.57);
    -moz-box-shadow: 4px 4px 11px 8px rgba(34, 60, 80, 0.57);
    box-shadow: 4px 4px 11px 8px rgba(34, 60, 80, 0.57);
}