* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  /* outline: 1px solid red; */
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-width: 320px;
  font-family: "Involve", 'Inter', 'Sans Serif';
}

/* fonts */

@font-face {
  font-family: 'Involve';
  src: url('/fonts/Involve/Regular/Involve-Regular.woff2') format('woff2'),
       url('/fonts/Involve/Regular/Involve-Regular.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.main_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.logo_container {
  display: flex;
  gap: 20px;
}

.text_container {
  margin-top: 10px;
}

.logo {
  width: 100px;
  height: auto;
}

.logo-text {
  width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .logo_container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .logo {
    width: 100px;
  }

  .logo-text {
    width: 200px;
  }

  .title {
    font-size: 24px;
  }

  .description {
    font-size: 16px;
  }

  .main_container {
    gap: 20px;
  }

  .text_container {
    margin: 0 30px;
  }
}