@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
  outline: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #070759;
  color: #FFFFFF;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
}

p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #FFFFFF;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #B3B3B3;
  transition: color 0.3s ease;
}

a:hover {
  color: #5e35b1;
}

img {
  max-width: 100%;
  height: auto;
}



