
body{
    background: black;
    font-family: sans-serif;
    color: gray;
}

.loginWD{
    position: absolute;
    width: 99%;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
}
.loginWD input{
    margin: 1%;
    height: 50px;
    width: 80%;
    border-radius: 15px;
    max-width: 500px;
}
.loginWD button{
    margin: 1%;
    height: 50px;
    width: 80%;
    border-radius: 15px;
    max-width: 500px;
}

#window_02{
    display: none;
}

.messages-send{
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
    display: flex;
}
.messages-send input{
    width: 80%;
    height: 80px;
}
.messages-send button{
    width: 20%;
}

.messages-content{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    border: 1px solid black;
    height: 100%;
}
div h1{
    margin: 1%;
    font-size: 50px;
}
ul{
    display: flex;
    flex-direction: column;
}
ul li{
    color: white;
}
.sendbutton{
    background: red;
    border: 2px solid black;
    color: white;
    font-size: 20px;
    font-family:monospace;
}

nav{
    position: absolute;
    border-radius: 8px;
    height: 10%;
    top: -1%;
    left: 0%;
    background-color: red;
    width: 100%;
    color: white;
    display: flex;
    place-items: center;
    justify-content: space-around;
    border-bottom: 2px solid white;
}
footer{
    position:fixed;
    bottom: 0%;
    width: 100%;
    height: 80px;
    place-items: center;
    border-top: 2px solid grey;
}
.forimage{
    background: whitesmoke;
    border: 1px solid black;
    place-content: center;
}