header {
    background: black;
    color: white;
    display: flex;
    align-content: center;
    background: blueviolet;
    padding: 8px;
    user-select: none;
}
header a{
    display: flex;
    align-content: center;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Century Gothic", CenturyGothic, sans-serif;
}

header .select {
    background: linear-gradient(60deg, #5e35b1, #26c6da);
    background: linear-gradient(60deg, #b142f3, #63afd1);
    padding: 5px;
    border-radius: 7px;
    margin-left: 7px;
    font-weight: bold;
}

span#back {
    font-size: 1.5rem;
    background: blueviolet;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dashboard {
    width: calc(100vw - 48px);
    display: flex;
    padding: 24px;
    justify-content: space-between;
}

.dashboardBlock.block2 {
    max-width: 300px;
    min-width: 200px;
    background: aliceblue;
    border-radius: 24px;
    padding: 24px;
}

.userInfo img {
    border-radius: 14px;
    max-width: 100px;
    margin-bottom: 10px;
}

a#user {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.center {
    /* display: flex; */
    justify-content: center;
}

.details {
    margin-top: 24px;
    display: grid;
}

div#name {
    font-weight: bold;
    text-decoration: none;
    color: #4a148c;
    font-size: 1.2rem;
}

a{
    text-decoration: none;
}

.do {
    background: #ede7f6;
    border-radius: 24px;
    padding: 24px;
    margin: 10px;
    user-select: none;
    cursor: pointer;
    display: block;
    color: black;
}

.do span {
    font-size: 50px;
}

.do h3 {
    margin-bottom: 0px;
}

@media screen and (max-width: 500px){
    .dashboard {
        flex-direction: column;
    }
    
    .do {
        margin-left: 0;
        margin-right: 0;
    }
        .dashboardBlock.block2{
            min-width: 0;
            max-width: 100vw;
        }
    }