*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
/*Finish Reset (normalize css)*/


/*  EXPLANATION
  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;
}
/*
  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;
}

body {
  font-family: 'Poppins', sans-serif;
}

.bg-beige {
        background-color: #f8f5f1;
    }
.bg-img {
  background-image: url('theonethingcover-bg.png');
  background-repeat: no-repeat;
  background-size: 33rem;
  background-position-x: -5rem;
}
.clr-orange{
    color: #cd6802;
}
.bg-orange{
    background-color: d46f03;
}

em {
    font-size: 13px;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 5px;
}

button.bg-orange:hover{
background-color: #cd6802;
}

#learn {
    background-color: #c4d7da;
}

h3 {
    color: #f15629;
    text-align: center;
    font-size: 23px;
    margin-bottom: 1rem;
}


    header {
        display: flex;
        justify-content: center;      
    }
    header > img {
        height: 5rem;
        padding-top: 11px;
        padding-bottom: 5px;
    }
    .first-article {
        max-width: 11rem;
    }
    .mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
    
    }
    .my-4 {
        padding-top: 4.4rem;
        padding-bottom: 5rem;
    }
    h1 {
        font-size: 18px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .first-article > p {
        font-size: 16px;
    }
   .my-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
   }
   .title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
   }
    .my-5 {
        margin-top: 1rem;
    }


#author {
  text-align: center;
  
}
h4 {
    font-size: 21px;

}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
 


.form-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
}

button {
  padding: 12px;
  background: orange;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.rounded-img{
    border-radius: 50%;
    border: 8px solid #f15629;
    width: 10rem;
    
    margin-top: 1rem;
    margin-bottom: 2rem;
}
    

footer {
    display: flex;
    justify-content: center;
}

.container {
    margin: 0 auto;
	width: 90%;
	max-width: 36rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 450px) {
    .bg-img {
  background-size: cover;
  background-position-x: center;
}
.first-article{
    margin-left: 8vw;
    max-width: 300px;
}
h1{
    font-size: 1.1rem;
}
.bg-img + p {
   margin-left: 8vw; 
}

}

@media (min-width: 525px) {
    .bg-img {
  background-size: 600px;
  background-position-x: center;
  
}
.first-article{
    
    padding-top: 8rem;
    padding-bottom: 7rem;
    margin: 0 auto;
	max-width: 36rem;
    display: flex;
    justify-content:flex-start;
    
}
h1 {
    max-width: 300px;
    font-size: 1.2rem;
    margin-left: 1rem
}

}