@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Poppins';
    text-align: center;
}
.wrapper{
    width: 90%;
    margin:0 auto;

}
header{
    width: 100%;
    height: 100px;
    background: red;
    position: fixed;

}
.logo{
    width: 30%;
    float: left;
    text-align: left;
    line-height: 100px;

}
.logo a{
    text-decoration: none;
    font-size: 30px;
    font-family: 'Pacifico';
    color: white;
    letter-spacing: 4px;
}
nav{
    float: right;
    line-height: 100px;

}
nav a{
    text-decoration: none;
    font-family: 'poppins';
    letter-spacing: 4px;
    font-size: 20px;
    color: white;
    padding: 36px 10px;
    margin: 0 1px;
    font-weight: 500;
}
nav a:hover{
    background: white;
    color: black;
}
 .banner-area{ background-image: url(images/stonehenge.jpg); 
    background-size: cover; 
    background-position: center, center; 
    top: 100px; 
    height: 5vh; 
    width: 100%; 
    position: fixed;
padding-top: 8%; 
    font-size: 80px;  } 
 .banner-area::after
 {content: 'Energy Drink Information'; 
    position: absolute; 
    top: 0; 
    left: 0; 
    display: block; 
    width: 100%; 
    height: 100%; 
    z-index: -1;  
    font-weight: bold;
    color: white;
    font-size: 80px;
    background: blue;
    opacity: .7;
 }


.content-area{
    width: 100%;
    height: 800px;
    position: relative;
    background-color: white;
    top: 200px;
}
.content-area h2{
    font-size: 40px;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    letter-spacing: 4px;

}
.content-area p{
    padding:2% 0;
    line-height:30px ;
    text-align: justify;

}
