* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #312e2e3d;
    background-image: url("image/glassback6.avif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.manageContainer {
    display: flexbox;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    padding: 30px;
    height: auto;
    flex-direction: column;
}

.manage-right {
    display: flex;
    margin: 0;
    padding: 30px;
    flex-direction: column;
    flex-wrap: wrap;
    width: 80%;
    float: right;
    background-color: transparent;
}

.manage-right-1 .manage-right-h5 {
    margin-bottom: 1.2rem;
    color: #000;
    font-family: inherit;
    text-align: left;
    margin: 10px;
}

.manage-right-1 {
    font-weight: bold;
    font-family: inherit;
    color: #000;
    margin: 10px;
}

.manage-right-h5 {
    font-size: 1em;
    font-family: inherit;
    color: #000;
}

.manage-right-h1 {
    font-size: 2.8rem;
    font-family: inherit;
    font-weight: 500;
    text-align: center;
    color: #000;
    margin-bottom: .2em;
}

.manage-right-h5 {
    font-size: 13px;
    font-family: inherit;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 2em;
}

.manage-right-button {
    padding: 10px 15px;
    margin: 10px;
    font-size: .8em;
    font-weight: bold;
    color: #000;
    background-color: #e6e9ee;
    border: 0;
    border-radius: .3em;
    width: 145px;
    text-align: center;
    margin-left: 26.6rem;
}

.manage-left {
    display: block;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    width: 19.4%;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 5;
    background-color: transparent;
}

.profile-icon {
    box-shadow: 0px 0px 0px 0px #b1b0b0;
    max-width: 35%;
    padding: 10px;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 20px 30px;
    border-radius: 2rem;
    margin-bottom: 3rem;
    margin-left: 3.3rem;
}

.profile-icon-img {
    width: 100%;
    height: auto;
}

.manage-left-cardButton {
    width: 80%;
    height: auto;
    border: 0;
    padding: 10px;
    margin:  10pxpx;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
    background-color: #ddd;
    box-shadow: 0 1px 0px 1px rgba(203, 214, 233, 0.842);
    border-radius: 20px;
    height: auto;
    margin-bottom: 2rem;
    transition: background-color ease-in-out .9s;
}

.manage-left-cardButton:hover {
    background-color: #b1b0b0;
}

.manage-left-cardButton-icon {
    width: 20%;
    height: auto;
    border: 0;
}

.manage-left-h3 {
    font-size: .9rem;
    font-weight: bold;
    font-family: inherit;
    text-align: center;
    color: rgb(2, 2, 29);
    text-decoration: underline;
    transition: color ease-in-out .8s;
}

.manage-left-h3:hover {
    color: #055aa0;
}

.manage-left-cardButton a {
    text-decoration: none !important;
    cursor: pointer;
}

.manage-left-cardButton-icon {
    margin-left: 4em;
}

.threeButton {
    margin-bottom: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    padding: .2rem;
    width: auto;
    height: auto;
    border-radius: .8em;
    background-color: #0000005d;
    flex-direction: column;
}

.threeButton ul {
    border-radius: 4px;
    margin-left: 10px;
}

.threeButton ul li a {
    padding: 8px 10px;
    margin: 10px;
    color: #ddd;
    border: 1px solid #ddd;
    background-color: transparent;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color ease-in-out .8s;
    font-size: 1em;
    font-weight: bold;
}

.threeButton ul li a:hover {
    background-color: #ddd;
    border: 1px solid #ddd;
    color: #021235;
}

.threeButton ul li {
    display: inline-flex;
    margin: 10px;
    list-style-type: none;
    margin-bottom: 1em;
}


@media screen and (max-width: 800px) {
    body {
        background-image: none;
    }

    .manageContainer {
        flex-direction: column;
        width: auto;
        display: flexbox;
    }

    .manage-right {
        flex-direction: column;
        float: none;
        width: 100%;
        display: flexbox;
    }

    .manage-left {
        flex-direction: column;
        width: 100%;
        display: flexbox;
    }

    .manage-right-button {
        margin-left: 5rem;
    }

    .profile-icon {
        margin-left: 6em;
    }

    .manage-left-cardButton {
        margin-left: 2.1rem;
    }

    .manage-left-cardButton-icon {
        margin-left: 6em;
    }

    .threeButton {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flexbox;
        background-color: transparent;
    }

    .threeButton ul {
        display: block;
        margin-left: 0;
    }

    .threeButton ul li,
    .threeButton ul li a {
        margin-left: 0;
    }

    .threeButton ul li a  {
        background-color: #021235;
        color: #fff;
        border: 0;
    }
}