@import "reset.css";
@import "variable.css";

/* screen */
@import "screen/main-login.css";
@import "screen/login.css";
@import "screen/chats.css";
@import "screen/menu.css";
@import "screen/settings.css";

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 769px) {
  .screen-detach {
    font-size: 24px;
    background-color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    position: fixed;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .screen-detach {
    display: none;
  }
}
