@import url("./main.css");

/* Page-specific styles below */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #494949;
    color: #333;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
}


main {
    display: flex;
    justify-content: center;;
}

marquee {
    width: 100%;
}

#rightcolumn{
    width: 35%;
}

#leftcolumn{
    width: 65%;
}


.window{
    background-color: #333;
    margin: 0.5rem;
    margin-left: 0;
    border: solid;
    border-color: #7CB0FF;
    color: #f3f4f5;
    display: flex;
    flex-direction: column;
}

.topbar {
    background-color: #7CB0FF;
    color: #000;
    font-size: 14px;
    height: 30px;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;     
}

.exiticon{
    margin-right: 5px;
    cursor: pointer;
    height: 24px;
    width: 24px;
}

.nametag {
    display: flex;
    align-items: center;
}

.nametag img{
    height: 24px;
    width: 24px;
    margin-left: 10px;
}

.windowContent{
    height: fit-content;
}