* {
    font-family: 'Sharp Grotesk', sans-serif;
    margin: 0px;
    align-items: center;
    background-color: rgb(232, 232, 232);
}

@font-face {
    font-family: 'Sharp Grotesk';
    src: url(imgzone/SharpGrotesk-SemiBold20.otf);
    font-weight: normal;
    font-style: normal;
}

header {
    position: fixed;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    border-bottom: 4px solid rgb(235, 128, 66);
    z-index: 11;
    /*
        235, 128, 66
        13, 176, 140
        8, 110, 184
    */
}

header img {
    width: 100px;
    height: 100px;
}

header h1 {
    background-color: rgb(255, 255, 255);
    margin-left: 10px;
    color: rgb(13, 176, 140);
    font-size: 40px;
    user-select: none;
}

header a {
    background-color: rgb(255, 255, 255);
    color: rgb(235, 128, 66);
    text-decoration-color: rgb(235, 128, 66);
}

main {
    display: flex;
    background-color: rgb(222, 234, 228);
}

main p {
    font-size: 20px;
    margin-left: 10px;
    scale: 1.0;
}

.right-side-container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 33.75%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    border-left: 4px solid rgb(8, 110, 184);
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    overflow:auto;
}

footer {
    background-color: rgb(203, 203, 203);
    display: flex;
    border-top: 4px solid rgb(8, 110, 184);     
    position: relative;
    z-index: 9;
}

footer p {
    background-color: rgb(203, 203, 203);
    margin: 5px;
    font-size: 14px;
}

#msg_list {
    width: 66%;
    word-wrap: break-word;
    margin-top: 105px;
}

#msg_list p, i {
    background-color: rgb(224, 224, 224);
}

.message-form {
    position: relative;
    text-align: left;
    border: 4px solid rgb(13, 176, 140);
    border-radius: 10px;
    padding: 7px 7px;
    margin: 5px;
    margin-bottom: 10px;
    aspect-ratio: 3/1;
    width: 92%;
    user-select: none;
    box-shadow: 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.message-form textarea{
    resize: none;
    width: 95%;
    height: 90%;
    font-size: 20px;
    margin: 0px;
    border: 2px solid black;
}

.message-form button {
    aspect-ratio: 2/1;
    width: 70px;
}

.message-form p {
    font-size: 15px;
    margin: 0;
}

.message-form input {
    margin-bottom: 5px;
    margin-top: 2px;
    width: 70px;
    padding: 0;
    border: 2px solid black;
    aspect-ratio: 2/1;
}

.settings {
    border: 4px solid rgb(8, 110, 184);     
}

.signup-form {
    text-align: center;
    padding: 10px 10px;
    border: 4px solid rgb(8, 110, 184);
    border-radius: 10px;
    justify-content: center;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 10px;
}

.signup-form input {
    width: 80%;
    height: 20px;
    margin: 5px;
}

.signup-form button {
    margin: 5px;
}

.signup-form img {
    width: 30px;
    height: 30px;
}

.signup-form h2 {
    color:rgb(8, 110, 184);
}

#login {
    border: 4px solid rgb(235, 128, 66);
}

#login h2 {
    color: rgb(235, 128, 66);
}