/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body{
  width: 90%;
  height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  background-color: #F2F2F2;
  font-family:'Roboto','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 1px gray;
}

header{
  display: flex;
  flex-direction: column;
  align-items: center;
}

img{
  width: 22vw;
  margin-right: 15px;
}

h1{
  margin: 20px 0 20px 0;
  background-color: white;
  padding: .9rem;
  border-radius: 1rem;
  
}

div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60vw;
  height: 60vh;
 background: linear-gradient(135deg, rgba(95,205,217,0.8), rgba(55,166,103,0.8), rgba(242,117,7,0.8), rgba(242,73,12,0.8));
    border-radius: 2rem;
    box-shadow: 1.5px 1.5px 8px gray;
}
p{
  background-color: white;
  padding: .9rem;
  border-radius: 1rem;
}











