
 /* We are using the 'Roboto' font from Google. This has already been added to your HTML header */

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.h1Introducing{
    font-family: 'Roboto';
    font-weight: lighter;
    font-size: 65px;
    margin-top: 80px;
    margin-bottom: 0px;
}

.pIntroducing{
    font-size: 35px;
    font-weight: lighter;
    margin-top: 25px;
    margin-bottom: 35px;
}

.logoPosition{
   display: flex;
   flex-direction: row;
   justify-content: space-around;
}


.h2Logos{
    font-family: 'Roboto';
    font-weight: lighter;
    font-size: 50px;
    height: 50px;
    margin-top: 160px;
    margin-bottom: 80px;
    text-align: center; 
}

.h3Content3{    
    width: 80%;
    margin-top: 80px;
    font-size: 40px;
    font-weight: lighter;
    padding-right: 106.5px;
    padding-left: 106.5px;
}
/**
 * Add your custom styles below
 * 
 * Remember: 
 * - Be organised, use comments and separate your styles into meaningful chunks
 *    for example: General styles, Navigation styles, Hero styles, Footer etc.
 * 
 * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
 */
.header, .footer {
    padding: 0rem 1rem 0rem 1rem;
    margin: 0 auto;
}

/* Header */
.header_logo{
   height: 45px;
   margin-top: 20px;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 3rem;
    margin-bottom: 1rem;
    margin-left: 5rem;
    padding-top: 0rem;
  }

  /* Navigation */
  .navigation_list {
    display: flex;
    list-style: none;
    width: 600px;  
    justify-content: space-between;
    padding-left: 450px;
    margin-top: 35px;
  }
  
  .navigation_item {
    padding: 0.5rem 0;
  }

  .navigation_link1 {
    color: #414040;
    font-weight: 600;
    text-decoration: none;
  }
  
  .navigation_link {
    color: #6e6d6d;
    font-weight: 400;
    text-decoration: none;
  }

  .navigation_link:hover{
    color: #f96203;
  }

  /* Content*/
  .content1{
    background-image: url("/img/first-background.jpg");
    width: 100%;
    height: 700px;
  }

 .Introducing{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 170px;
 } 

 .content2{
    width: 100%;
    height: 400px;
    padding-top: 120px;
    display: flex;
    padding-bottom: 80px;    
 }

 .content3{
    text-align: center;
    background-color: #ffeaf0;
    width: 100%px;
    height: 400px;
 }

 .imgDrinking{
    width: 550px;
    height: 400px;
 }

 .quotation{
    color: #ff0000;
    font-size: 50px;
 }

/* Button */
 .btnLearn{
    background-color: #e05e0d;
    width: 120px;
    height: 50px;
    border-radius: 5px;
    font-size: 17px;
    margin-top: 20px;
 }

 .btnGetKarma{
    background-color: #e05e0d;
    width: 180px;
    height: 50px;
    color: white;
    border: solid white 2px;
    border-radius: 5px;
    font-size: 17px;
    margin-top: 20px;
 }

/* Icons */
.iconLogos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    
}

.icon{
    height: 150px;
}

.iconText{
    font-family: 'Roboto';
    font-size: 35px;
    font-weight: 400;
}

 /* Footer */
 .footer{
    width: 1000px;
    font-size: 25px;
    text-align: center;
    color: #232121;
    border-top: solid 2px #eae6e6;
 }

 .textFooter{
    text-align: center;
    font-size: 25px;
    color: #acacac;
    font-weight:400;
    margin-top: 20px;
 }

 .logosFooter{
    display: flex;
    justify-content: center;
 }

 .iconFooter{
    height: 30px;
    border: solid 2px #cdc5c5aa;
    border-radius: 30px;
    padding: 5px;
    margin-right: 10px;
    margin-left: 10px;
 }

 .circle{
    border: solid 1px #acacac;
    border-radius: 20px;
    padding: 0 4px 0 4px;  
    font-size: 15px;  
 }