/* Off */

.welcome-text-box {
    display: none !important;
}

.account-container {
    display: none;
}

/* .account-container {
    display: none ;
} */

/* End off */


/* Standards */

.header {
    padding-top: 5px;
}

.header p {
    margin: 0;
    margin-left: 5px;
}

.header a{
    text-decoration:  none;
    color: white;
    text-align: left;
}

.center {
    text-align: center;
    display: grid;
    place-items: center; 
}

/* End Standards */

html, body {
    margin: 0;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
}



body {
    background-color: rgb(50, 50, 50);
}

.account-button {
    position: fixed;
    top: 0;
    right: 0;
    background-color: aquamarine;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.account-button:hover {
    background-color: rgb(81, 161, 134);
}

.account-container {
    width: 100vw;
    height: 100vh;
    top: 0;
    position: fixed;
}

.account-box {
    width: 80%;
    height: 80%;
    margin: auto;
    margin-top: 80px;
    background-color: rgb(80, 80, 80);
    border-radius: 10px;

    color: white;
}

.exit {
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    border-radius: 0 10px 0 0;
    width: 30px;
    height: 30px;
    cursor: pointer;

    background-color: rgb(46, 107, 161);
}

.exit:hover {
    background-color: rgb(27, 64, 96);
}

.account {
    padding: 15px;
    height: 100%;
}

.login-box {
    display: block;
}

.login-box div input {
    margin: 10px;
    padding: 5px;
}

.bb {
    top: 0;
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    cursor: pointer;

    background-color: rgba(0, 0, 0, 0.818);
}




.content {
    width: 100vw;
    height: 100vh;
}

.content hr {
    height: 1px;
    border: none;
    background-color: black;

}

.welcome-text-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-text {
    max-width: 100%;
}


.apps {
    margin-top: 10px;
    gap: 10px;
    display: inline-grid;
    grid-template-columns: auto auto auto;
    grid-template-columns: repeat(4, auto);
}

.apps a {
    text-decoration: none;
    color: azure;
}

.app {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: auto;
    padding: 3px;
    width: 79px;
    height: 79px;
    background-color: gray;
}

.app:hover {
    background-color: beige;
}