*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*::selection {
  color: #111;
  background-color: #6cc4bc;
}

:root {
  --main-bg: linear-gradient(to top, var(--white3) 90%, var(--primary-color) 10%);
  --main-height: 60vh;
  --main-width: 60vw;

  --side-width: 30%;
  --side-upper-height: 18%;
  --side-search-input-width: 75%;
  --side-lower-height: calc(100% - var(var(--side-upper-height)));
  --side-contact-height: 6rem;

  --header-height: 6.5rem;
  --header-profile-image: 4.5rem;


  --chat-action-height: 6rem;
  --chat-action-input-width: 90%;
  --chat-action-input-height: 4rem;
  --chat-main-height: calc(var(--main-height) - var(--header-height) - var(--chat-action-height));

}

html {
  font-size: 62.5%;

  --svg-circle: 50%;

  --white1: #dddddd;
  --white2: #cecece;
  --white3: #f0efef;
  --gray: #6e6e6e;

  --chat-bg: #ddd8d5;
  --chat-main-bg: red;
  --header-bg-color: #ebefef;
  --chat-action-bgcolor: #efefef;
  --chat-msg-me: #caebe8;
  --hover-bgcolor: #ebefef;
  --active-bgcolor: #dcdddd;
  --primary-color: #e66903;
  --primary-dark: #683200;
  --primary-light: #ddc071;

  --font-lg: 1.8rem;
  --font-md: 1.6rem;
  --font-sm: 1.4rem;
  --font-xs: 1.2rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  height: 100vh;
  color: #161616;
  /*background-image: var(--main-bg);*/
  background-image: url("../images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}


main {
  width: var(--main-width);
  height: var(--main-height);
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

svg {
  fill: #333;
}

a:link {
  font-family: monospace;
  color: black;
  text-decoration: none;
}

a:hover {
  color: #ff7301 !important;
  text-decoration: underline;
}

a:active {
  color: #ff7300 !important;
}

a:visited {
  color: #ff7300;
}