:root{
    --default-font: 'Nunito', sans-serif;
    --default-color: #272142;
    --secondary-color: #662EED;
}
body{
    color: var(--default-color);
    font-family: var(--default-font);
    font-size: 24px;
}
.hero{

    text-align: center;
    padding: 50px 40px;
    margin: 10px;
    color: white;
    background-image: url(/images/hero.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}

h1{
    font-weight: bold;
    font-size: 72px;
}

h3{
    font-size: 36px;
    font-weight: bold; 
    padding: 30px 30px
}
h4{
   
    font-weight: bold;
    padding-top: 40px;
}
h5{
    font-weight: bold;
    padding: 10px 20px;
}

h5 {border:none;}
h5:after {
  height: 1px;
  display: block;
  content: " ";
  background: repeating-linear-gradient(to right, rgb(103, 213, 210) 0,
  rgba(0,0,0,0.5) 1px, rgba(103, 213, 210, 1)
  1px,
  rgba(255,255,255,0) 2px);
}
h2{

    font-weight: bold;
    font-size: 28px;
    
   
}

.ingredients {
    border:none;
    padding:10px
}
.ingredients:after {
  height: 1px;
  display: block;
  content: " ";
  background: repeating-linear-gradient(to right, rgb(103, 213, 210) 0,
    rgba(0,0,0,0.5) 1px, rgba(103, 213, 210, 1)
    1px,
    rgba(255,255,255,0) 2px);
}


.hero p{
    font-weight: lighter;
}

.intro{
    min-height: 5vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.recipe{
    padding: 70px 60px;
    width: 900px;
}
 ul{
    list-style-type: none;
    font-size: 18px;
    text-decoration: none;
}
.method{
    color: #F65282;
    font-weight: bold;
}

.content-section h1{
    font-size: 72px;
    text-align: center;
    
}
.content-section h2{
    font-size: 60px;
    font-weight: bold;
    
}
.content{
    padding: 100px 80px 10px;}

.image{
    border-radius: 12px;

}
.recipe-image{
    border-radius: 12px;
   
    
}

.about-me{
    padding: 40px;
}

.content-section p{
    font-size: 18px;
    line-height: 1.5;
}
.about-section-recipes p{
    font-size: 16px;
}
.icon{
    padding-right: 10px;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    
  }
  .address{
    padding-left: 10px;
  }
  .contact-me{
    color: var(--default-color);
    font-size: 18px;
  }
  nav{
    padding: 20px 0;
    font-size: 20px;
}

nav li{
    display: inline;
    list-style: none;
    margin-left: 15px;
    font-size: 16px;


}
nav a{
    text-decoration: none;
    color: var(--default-color);
}
nav a:hover,

nav li.active a{
    color: var(--secondary-color);
    transition: all 100ms ease-in-out;
}
footer{
    padding: 60px 50px;
}
footer p{
    font-size: 14px;
    padding: 12px;
    font-weight: bold;

}
.name-id{
    font-size: 24px;
    font-weight: bold;
}
footer .social-links a{
    margin: 0 20px;
    color: var(--default-color);
    padding: 10px 14px;
    font-size: 18px;
    transition: all 100ms ease-in-out;
    font-size: 14px;
}
footer .social-links a:hover{
    color:var(--secondary-color);
    background: var(--default-color);
    border-radius: 12px;
}

  @media screen and (max-width:900px) {
    
    .about-me-content{
        margin-top: 0;
    }
    .content-section h2 {
        font-size: 48px;
        padding-top: 10px;
    }
    .hero{

        text-align: center;
        padding: 10px;
        margin: 10px;
        color: white;
        background-image: url(/images/hero.png);
        background-size: auto;
        background-repeat: no-repeat;
    }
    footer .social-links a{
text-align: center;
}
.content{
padding: 20px;
} 
}