/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  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;
}

/*
  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;
}

:root {
  --theme-color: #f9004d;
  --secondary-color: rgb(19, 18, 18);
}

body {
  background-color: #131212;
}

a {
  padding: 3px 30px;
  border-radius: 30px;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  text-transform: capitalize;
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 220;
}

/* Header section */
.header_section {
  background-color: var(--theme-color);
  opacity: 0.8;
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

.header_section:hover,
.header_section:focus {
  background-color: var(--theme-color);
  opacity: 1;
}

.header--navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  height: 100px;
}

.logo_section {
  width: 34%;
}

.destop_nav {
  width: 40%;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0;
}

.logo {
  font-size: 35px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

span {
  color: var(--secondary-color);
}

.destop_nav li {
  list-style: none;
}

.destop_nav li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: capitalize;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  padding: 3px 20px;
}

.destop_nav li a:hover {
  color: #db8b8b;
}

.mobile_nav {
  display: none;
}

h1:first-of-type,
h3:first-of-type {
  color: var(--theme-color);
  text-align: center;
}

p {
  color: white;
  width: 85%;
  margin: 0 auto;
}

.about {
  background-color: #131212;
  padding-block: 2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.about-text {
  max-width: 600px;
  color: white;
}

.about-text > p {
  width: 100%;
}

.about-img {
  max-width: 900px;
}

.image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

blockquote {
  color: white;
  width: 85%;
  margin: 1rem auto 2rem;
}

footer {
  background: linear-gradient(
    45deg,
    var(--theme-color),
    var(--secondary-color)
  );
}

.grid-container {
  display: -ms-grid;
  display: grid;
  width: 90%;
  margin: 0 auto;
  -ms-grid-columns: (minmax(250px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding-block: 1rem;
}

.grid-container div {
  -ms-grid-column-align: center;
  justify-self: center;
  text-align: center;
}

.grid-container p {
  text-transform: capitalize;
  color: white;
}
#fire {
  color: var(--theme-color);
}
@media (max-width: 709px) {
  .about-text {
    text-align: center;
  }
}
/*# sourceMappingURL=blog.css.map */
