#AccountPage{
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100vh;
    background-color: white;
    justify-content: center;
    gap: 15px;
}
#AccountPageBackHome{
    display: flex;
    position: absolute;
    top: 10px;
    left: 10px;

    background-color: #7b76fb;
    
    color: #3c07a7;
    width: 150px;
    height: 50px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0px 5px #3c07a7;
    border: solid 1.9px #3c07a7;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
#AccountPageBackHome > a{
    color: #3c07a7;
    display: flex
;
    position: relative;
    text-decoration: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
#AccountPageBackHome:hover{
    top: 15px;
    box-shadow: 0px 0px #3c07a7;
}
#AccountPageBackHome:hover + #AccountPageBackHome > a{
    box-shadow: 0px 0px #3c07a7;
}

#profilePictureSuccess{
        display: flex;
    position: relative;
    width: 231px;
    height: 229px;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 3886px;
    background-position-x: -229px;
    background-position-y: -159px;
    top: 39%;
    left: 19.6%;
    border-bottom: solid 23px #425f4f;
    border-radius: 50%;
    animation: textAppear 8.5s ease-out forwards;
    animation-delay: 1s;
    animation-fill-mode: backwards;
}

#AccountPageMyplayerInfo{
        position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: solid 2px black;
    width: calc(30% - 20px);
    gap: 10px;
    padding: 10px;
    height: calc(80% - 20px);
}
#AccountPageSetting{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 2px black;
    width: calc(60% - 20px);
    gap: 10px;
    padding: 10px;
    height: calc(80% - 20px);
}
#accountPagePlayer{
    display: flex;
    position: relative;
    width: 229px;
    height: 229px;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 4376px;
    background-position-x: -259px;
    background-position-y: -214px;
    border: solid 8px #3d07a7;
    border-radius: 50%;
    animation: textAppear 8.5s ease-out forwards;
    animation-delay: 1s;
    animation-fill-mode: backwards;
    background-color: #7b76fb;
}

#usernameAccountPage{
   display: flex;
    position: relative;
    font-size: 68px;
}

#cancelSubscription{
    position: relative;
    display: flex;
    background-color: #7b76fb;
    color: #3c07a7;
    height: 50px;
    width: 90%;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0px 5px #3c07a7;
    border: solid 1.9px #3c07a7;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 23px;
}
#cancelSubscription:hover{
    bottom: calc(23px - 5px);
    box-shadow: 0px 0px #3c07a7;
}