@font-face {
    font-family: 'satoshi';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'satoshi';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'satoshi';
    src: url('../fonts/Satoshi-Black.otf') format('opentype');
    font-weight:900;
    font-style:normal;
}


body{
    margin: 5vw;
    margin-top: 20px;
    background-color: rgb(40, 40, 40) !important;
    font-family: satoshi; color: white;
    font-weight: normal;
}
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
}
.just-around{
    display: flex;
    justify-content: space-around;
}
.just-center{
    display: flex;
    justify-content: center;
}
.justify-end{
    display: flex;
    justify-content: end;
}
input{
    border-radius: 10px;
    padding: 7px;
    margin-bottom: 5px;
    font-size: 2vw;
    border: 3px solid rgb(232, 232, 232);
}
@media screen and (orientation: portrait) {input{ font-size: 6vw !important;}}

.submit{
    background-color: rgb(89, 89, 255);
    color: white;
    border: 1px solid rgb(89, 89, 255   );
}
.submit:hover{
    background-color: #3232e7;
    border: 2px solid rgb(97, 97, 249);
}
.title{
    color: rgb(136, 136, 255) ;
    font-weight: 900;
    font-size: 60px ;
    text-align: center;
    border: 1px white solid;
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    margin-top: 0;
}
.card{
    border-radius: 10px;
}
@media screen and (orientation: portrait) {.title{ font-size: 15vw !important;}}
.message-box{
    overflow-y: auto;
    background-color: #2c2c2c;
    border: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 90vh;
    right: 0;
    z-index: 0;
    
    
}
.ui{
    z-index: 1;
    position: absolute;
}
.send{
    background-color: rgb(89, 89, 255);
    color: white;
    border: 1px solid rgb(89, 89, 255   );
    border-radius: 10px;
    height: 70px;
    max-width: 80px;
    width: 25%;
    font-weight: bold;   
}
.send:hover{
    background-color: #3232e7;
    border: 2px solid rgb(97, 97, 249);
}
.message-bar{
    border-radius: 10px;
    height: 70px;
    width: 75%;
    margin: 0;
}
.message-area{
    width: 100vw;
    position: fixed;
    bottom: 10px;
    left: 0;
}
.logout{
    background-color: rgb(255, 43, 43);
    color: white;
    border: 1px solid rgb(202, 31, 31);
    border-radius: 10px;
    font-weight: bold;
    padding: 7px;
    padding-left: 10px;
    padding-right: 10px;
    position: fixed;
    top: 20px;
    right: 10px;
    font-size: 2vh;
}
.logout:hover{
    background-color: rgb(202, 31, 31);
    border: 2px solid rgb(255, 43, 43);
}