@import url("./main.css");
:root {
  --blue-color: #00dcf7;
  --white-color: #fff;
  --gray-color: #7e8daa;
  --dark-color:#343a40;
  --black-color:#000;
  --text-color:#212529;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body{
    font-family: var(--font-family-sans-serif);
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: var(--black-color);
}
#nav{
    height: 70px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 200px;
    z-index: 3;
    position: fixed;
    top: 0;
}
#nav span img{
    width: 90%;
}
#nav ul{
    height: 100%;
    width: 52%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 12px;
    font-weight: 400;
    margin-right: 15px;
}
#nav ul li a{
    color: var(--white-color);
}
#nav ul li:last-child{
    height: inherit;
    padding: 10px 20px;
    font-size: 15px;
    background-color: var(--blue-color);
    color: var(--black-color);
}
#nav ul li:last-child a{
    color: var(--black-color);
    font-weight: 500;
}

#chat{
    position: fixed;
    padding: 15px;
    bottom: 30px;
    right: 30px;
    background-color: var(--blue-color);
    z-index: 4;
    border-radius:  50% 5px 50% 50% ;

}

#chat i{
    font-size: 30px;
}