body {
    font-size: 14px;
    font-family: Courier New;
}

#title {
    font-weight: 550;
    text-align: center;
    margin: 20px;
    margin-top: 0px;
}

/* links */
#links-container {
    height: 40px;
}

#gh-logo-container {
    float: right;
}

#gh-logo {
    width:30px;
    margin: 5px;
}

#my-link-container {
    float: left;
}

#my-link {
    display: block; 
    margin: 5px;
    text-decoration: none; 
    color: black;
    padding-left: 5px;
    padding-right: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 17px;
    font-weight: 550;
    border-radius: 5px;
	background-color: rgb(245, 245, 245);
	border: 1px solid rgb(235, 235, 235);
}

#my-link:hover {
    background-color: rgb(235, 235, 235);
	border: 1px solid rgb(225, 225, 225);
}

#emoji-copy {
    float: left;
    padding-top: 7px;
    padding-left: 15px;
    font-weight: bold;
}

#emoji-copy-count {
    font-size: 18px;
}

#emoji-copy-text {
    font-size: 14px;
    padding-left: 8px;
}

/* main */

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#face-emoji-container {
    display: flex;
    align-items: center;
    position: relative;
}

#help-text{
    position: absolute; 
    bottom: 0;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: bold;
}

#video-feed {
    border: 3px solid black;
    height: 500px;
    width: 500px;
    margin-right: -3px;
    z-index: 1;
}

#emoji-div {
    border: 3px solid black;
    height: 500px;
    width: 400px;
    background-color: rgb(231, 231, 231);
    padding-left: 7px;
}

#emotion-title {
    text-align: center;
    font-weight: 550;
    font-size: 50px;
}

#emoji-title {
    text-align: center;
    font-size: 150px;
    margin: -8px;
    margin-top: 10px;
    margin-bottom: -15px;
}

#emoji-list {
    word-wrap: break-word;
}

.clickable-emoji {
    cursor: pointer;
    font-size: 50px;
    display: inline;
    margin: 7px;
    padding-top: 7px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    border: 1px solid rgb(110, 110, 110);
    background-color: rgb(192, 192, 192);
}
.clickable-emoji:hover {
    background-color: rgb(172, 172, 172);
}

#copy-alert {
    z-index: 2;
    position: fixed;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

#canvas {
    z-index: 2;
    position:absolute;
    height: 500px;
    width: 500px;
}

#small-canvas-container {
    z-index: 3;
    position:absolute;
    height: 500px;
    width: 500px;
}

#small-canvas {
    z-index: 3;
    position:absolute;
    top: 2px;
    left: 2px;
    height: 48px;
    width: 48px;
    border: 1px solid black;
    filter: grayscale(100%);
}

#play-pause-btn {
    z-index: 3;
    position:absolute;
    top: 2px;
    left: 450px;
    height: 48px;
    width: 48px;
    font-size: 18px;
    font-family: Arial;
}

#play-pause-btn:hover {
    background-color: rgb(179, 179, 179);
}

#bar-chart-container {
    display: flex; 
    justify-content: center;
}

#bar-chart {
    width: 900px;
}