@font-face {
	font-family: 'MyFont';
	src: url("./PixelMplus12-Bold.ttf");
}

body {
    font-family: 'MyFont';
    text-align: center;
    background: #FFFFFF;
    overflow: hidden;
    margin:0px;
}


button#mic{
    width: 50px;
    background-color: #00FF06;
    border:0px solid;
}


button#microphone-permission{
    width: 100px;
    height: 50px;
    background-color: #00FF06;
    border:0px solid;
    font-family: 'MyFont';
    color: #494949;
}


button#audio-permission{
    width: 100px;
    height: 50px;
    background-color: #00FF06;
    border:0px solid;
    font-family: 'MyFont';
    color: #494949;
}

button:hover {
    background-color: #555555;
}

.firstmain{
    font-family: 'MyFont';
    width: 100vw;
    height: 100vh;
    position: absolute; /*relativeに設定*/
    border: 0px solid #494949;
    font-size: 12px;
    background-color:#494949;
    color: #00FF06;
    top:0px;
    padding: 0em 0em;
    margin:0;
    text-align:left;
    z-index:1000;
}

.main{
    width: 100vw;
    height: 100vh;
    position: relative; /*relativeに設定*/
    border: 0px solid white;
    padding: 0em 0em;
    margin:0;
}

.submain{
    width: 100vw;
    height: 20vh;
    top: 80vh;
    position: absolute;
    margin:0;
}

ul,li,p {
    margin: 0;
    padding: 0;
}
ul,li {
    list-style: none;
}
.chat {
    left: 50%;
    top: 20%;
    height: 50vh;
    width: 45vw;
    overflow-y: auto;
    background: white;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 0px;
    position: absolute; /*absoluteに設定*/
    background-color: transparent;
}
.balloon {
    max-width: 60%;
    width: fit-content;
    padding: 16px;
    border-radius: 0px;
    word-break: break-word;
    text-align: left;
    font-size: 12px;
    color: white;
    background-color: transparent;
}
.box {
    display: flex;
    align-items: end;
    gap: 8px;
}
.right {
    flex-direction: row-reverse;  /* 左右の並び順を逆順にする */
}
.me {
    background-color: transparent;
    color: #00FF06;
}
.you {
    background-color: transparent;
    color: #00FF06;
}
#canvas {
    top: 0px;
    left: 0px;
    width: 100vw;
    height:100vh;
    background: #ffffff;
    padding: 0em 0em;
    position: absolute; /*absoluteに設定*/
}
#talkimg{
    width: 30px;
    fill: #ffffff;
}



.inputMessage {
  margin: auto;
  height: 50px;
  width: 85%;
  max-width: 1000px;
  position: relative;
  display: flex;
  
    & input[type="text"] {
    height: 40px;
    width: 95%;
    padding: 0 10px;
    border: 5px solid #00FF06;
    border-right: none;
    font-size: 16px;
    font-family: 'MyFont';
  }
  
  & button[type="talk"] {
    border: 5px solid #00FF06;
    padding: 0;
    width: 50px;
    height: 50px;
    text-align: center;
        background-color: white;
    
    }

    & img{
      width: 33px;
      
      }
    }
  
  





