:root {
  --dk-b: #001A33;
  --b: #001F3F;
  --lg-b: #004B87;
  --lg-y: #F6EFA3;
  --y: #FFD700;
  --r: #FF4136;
  
}


/* ? media queries to edit css responsiveness */

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
/*@media (min-width: 768px) {

} */

/* desktop */
/* @media (min-width: 1024px) {
 
} */


/* ? Boxes content */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  /* border: 2px solid; */
}

html {
  scroll-behavior: smooth;
  scroll-padding: 10%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 2em; /* Default font size for h1 */
  background-color: var(--y);
  color: black;

  border-bottom: 4px solid var(--dk-b);

  text-transform: capitalize;

  font-family:  cursive;
  font-weight: 900;
  font-style: normal;


}

img {
  object-fit: cover;
}


body {
  overflow-x: hidden;
  background-color: #F6EFA3;

  font-family: 'Lato';
}

/* ? Separates content */
.section {
  margin-bottom: 2rem;
}

/* !controls responsive system */

/* mobile */
@media (min-width: 320px) {
  .container {
    max-width: 320px;
  }
}

/* landscape mobile */
@media (min-width: 568px) {
  .container {
    max-width: 568px;
  }
}

/* tablet */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

/* desktop */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
