@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;600&display=swap');

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
    2. Remove default margin
  */
* {
  margin: 0;
}

/*
    3. Allow percentage-based heights in the application
  */
html,
body {
  height: 100%;
}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 15px;
  font-weight: normal;
  color: #fff !important;
  background-color: rgb(19, 19, 19) !important;
}

/*
    6. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
    7. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
  font: inherit;
}

/*
    8. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

.overlay {
  background-color: #000000;
  opacity: 0.93;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.home {
  background-image: url('src/assets/crypt.jpg');
  width: 100%;
  height: 80vh;
  /* background-color: aliceblue; */
}

.home-image {
  width: 59%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-inner {
  padding: 120px 0;
}

@media (max-width:576px){
  .home-inner {
    padding:30px 0;
  }
  
}

.home-inner h2 {
  font-size: 23px;
  font-weight: 500;
  line-height: 40px;
  word-spacing: .3rem;
  margin-bottom: 1rem;
  margin-top: 2em;
  letter-spacing: 2px;
}