body {
    font-family: arial;
    margin: 0;
    padding: 0;
}

a {
    color: #6699ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #2c6def;
}

.text {
    width: 90vw;
    margin: 2px 10px 2px 10px;
}
#main {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 400px;
    justify-content: flex-start;
    box-sizing: border-box;
}
#title {
    font-weight: 700;
    font-size: 1.4em;
    width: max-content;
    margin: 0 auto;
    padding: 10px;
}

#live-area {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

#live-video-area {
    display: contents;
}

#live-chat-area {
    display: contents;
}

#header {    
    
}

#header-menu {
    display: flex;
    justify-content: center;
}

#replay-list {
    display: flex;
    flex-direction: column;
    width: 25%;
    overflow: auto;
    overflow: hidden;
    height: 75vh;
    overflow-y: auto;
}

.video-box {
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.video-box:hover {
    background-color: #cccccc;
    cursor: pointer;
}

.video-box-img {
    padding: 3px;
    
}

.video-box-name {
    font-size: 12px;
    font-weight: bold;
}

.header-menu-btn {
    margin: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    background-color: #c0d3e3;
    font-weight: 900;
    font-size: xx-large;
    cursor: pointer;
}

header-menu-btn-selected {
    background-color: #8098ad;
    color: white;
}

.header-menu-btn:hover {
    background-color: #8098ad;
    color: white;
}

