/*
  1. Use a more-intuitive box-sizing model.
*/


@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

:root {
  --clr-bg: #495D6A;
  --clr-btn: #A7B8C3;
  --clr-cont: #5B7586;
  --clr-shadow: #36454F;

  --ff-primary: 'Roboto Condensed', sans-serif;
  --ff-secondary: 'Love Ya Like A Sister', cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 120vh;
  color: white;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
a{
  text-decoration: none;
  color: black;
  font-family: var(--ff-primary);
}
/*
  7. Remove built-in form typography styles
*/
/* input, button, textarea, select {
  padding: 0;
  font: inherit;
  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;
}

body {
  /* background-color: var(--clr-bg); */
  background-image: linear-gradient( 358.4deg,  rgba(249,151,119,1) -2.1%, rgba(98,58,162,1) 90% );
  overflow: hidden;
  text-align: center;
  
}
.desc1{
  font-family: var(--ff-secondary);
  font-size: 1.5rem;
  color:aliceblue;
}
.desc2{
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  color:aliceblue;
  
}

.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.elements{
  width: 200px;
  margin-bottom: 2rem;
}
audio{
  margin-bottom: 1rem;
}