body {
    background-color: black;
    color: white;
}


/* index */
.fainman {
    font-size: 40px;
    font-weight: bold;
    padding-left: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: color 0.2s ease-in;
}

.fainman:hover {
    color: #53ceff;
    transition: 0.3s ease-in;
}

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    overflow: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

li {
    float: left;
}

.navList {
    font-size: 18px;
    margin-top: 17px;
    margin-left: 80px;
}

li a {
    color: white;
    display: block;
    text-align: center;
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.2s ease-in;
}

li a:hover {
    color: #73ff86;
    transition: 0.3s ease-in;
    cursor: pointer;

}

#loginIndex {
    background-color: #53ceff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    height: 40px;
    width: 100px;
    margin-left: 35vw;
    margin-top: -100px;
    transition: background-color 0.2s ease-in;
}

#loginIndex:hover {
    background-color: #73ff86;
    cursor: pointer;
    transition: 0.3s ease-in;        
}

#mainContent {
    font-size: 25px;
    margin-top: 10%;
    margin-left: 10%;
    color: #53ceff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.mainHead {
    color: white;
}

.button {
    background-color: #53ceff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    height: 50px;
    width: 160px;
    margin-left: 15px;
    transition: background-color 0.3s ease-in;
}

.button:hover, #loginBtn:hover {
    background-color: #73ff86;
    cursor: pointer;
    transition: 0.3s ease-in;
}

/* register page*/
#createHead {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-top: 25px;
}

.boxCenter {
    background-color: #282828;
    border-radius: 15px;
    width: 40%;
    height: 460px;
    margin: 0 auto;
    display: block;
}

.inputs {
    text-align: center;
    padding: 10px;
    float: none;
    display: block;
}

input {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-left: 10px;
    background-color: white;
    border: none;
    border-radius: 10px;
    width: 300px;
    height: 45px;
}

/* implement input:focus */
input:focus {
    outline: none;
}

#createBtn, #loginBtn {
    background-color: #53ceff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    height: 50px;
    width: 160px;
    margin-left: 15px;
    display: block;
    margin: auto;
    margin-top: 15px;
    transition: background-color 0.2s ease-in;
}

#createBtn:hover, #loginBtn:hover {
    background-color: #73ff86;
    cursor: pointer;
    transition: 0.3s ease-in;    
}

#bottomText {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}

#bottomLink {
    text-decoration: none;
    color:#73ff86;
    transition: color 0.2s ease-in;
}

#bottomLink:hover {
    text-decoration: underline;
    color:#53ceff;
    transition: 0.3s ease-in;
}



/* chat window */
.user{
    display: flex;
    background-color: red;
    justify-self: right;
    justify-content: right;
    width: 85%;
    margin-right: 5px;
}

.model{
    display: flex;
    background-color: blue;
    justify-self: left;
    justify-content: left;
    width: 85%;
    margin-left: 5px;
}

#container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-self: center;
    background-color: black;
    gap: 2vw;
    width: 95vw;
    height: 95vh;
}

#chatPanel {
    background-color: #282828;
    border-radius: 15px;
    width: 25vw;
    margin: 1vw;
}
#chatHead, #drawingHead {
    display: flex;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px;
    font-size: 25px;
    justify-content: center;
}

#chatLog{
    overflow: auto;
}

#drawingBoard {
    background-color: #282828;
    border-radius: 15px;
    width: 65vw;
    margin: 1vw;
}

#inputArea {
    display: flex;
    justify-self: center;
    justify-content: flex-end;
    margin-bottom: 5px;

}

#send {
    color: white;
    font-size: 20px;
    background: none;
    border: none;
    transition: 0.2s ease-in;
}

#send:hover {
    cursor: pointer;
    color:#53ceff;
    transition: 0.3s ease-in;    
}