#statusPage{
    position: relative;
    display: flex;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    background: var(--ColorThemes0);
    justify-content: center;
}


#statusPage > #statusPage-team,
#statusPage > #statusPage-words{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    max-width: 300px;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    border: 2px solid var(--ColorThemes1);
    border-radius: 15px;
    padding: 10px 20px;
    border-style: dotted;
}
#statusPage > #statusPage-team > div{
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#statusPage > #statusPage-team > div > span{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    font-size: 30px;
}


#statusPage > #statusPage-words > div{
    width: 100%;
    border-radius: 10px;
    padding: 3px;
    margin: 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#statusPage > #statusPage-words > div > p{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    font-size: 18px;
    color: rgb(255 255 255 / 70%);
    text-transform: capitalize;
}
#statusPage > #statusPage-words > div > svg{
    width: 20px;
    height: 20px;
    -webkit-filter: drop-shadow( 0px 1px 0px rgb(1 65 43 / 40%));
    filter: drop-shadow( 0px 1px 0px rgb(1 65 43 / 40%));
}


#statusPage > .bottons{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    max-width: 300px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}
#statusPage > .bottons > button{
    width: 100%;
    margin: 10px 0;
    height: 50px;
    border-radius: 15px;
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes0);
    color: rgb(255 255 255 / 70%);
    z-index: 999;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease 0s;
    border-style: solid;
}
@media (hover: hover) {
    #statusPage > .bottons > button:hover{
        border-style: dashed;
    }
}