@import 'utilies.css';

:root {
    --primary:#3DCFD3;
    --dark:#161616;
    --pure:#FFFFFF;
    --ternary:#898989;
    --light:#F2F2F2;
    --secondary:#070606;
}

*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smotthing:antialiased;
}

body{
    height: 650px;
    font-family:'Poppins',sans-serif;
}

header{
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 70% 87%, 0 100%);
}

.container{
    max-width: 1152px;
    padding:0 15px;
    margin: auto;
}

header nav .left a{
    color: var(--pure);
    text-decoration: none;
    margin-right:2rem ;
    text-transform:uppercase;
    transition: all .3s ease;
}
#link a{
    transition: all .3s ease;
}

header nav .left a:hover{
    color:var(--primary);
}

header nav {
    padding:2rem 0;
}

header nav .branding{
   margin-right:3rem ;
}
.hero{
    padding:10rem 0;
}
.hero .left img{
    width: 400px;
}
.hero .right{
    color:var(--pure);
}

.hero .right h6{
    font-size:1.6rem;
    color:var(--primary);
    margin-bottom: 0.5rem;
}
.hero .right h1{
    font-size:4rem;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.hero .right h1 span{
    color:var(--primary);
}
.hero .right p{
    line-height: 1.9;
    margin-bottom: 2rem;
}

.hero .right{
    margin-top: -6rem;
}
.topnav{
    display: flex;
    margin-bottom: 3rem;
}
#main{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color:var(--pure);
    margin-right: 3rem;
}
#main h6{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
}
#main #pnrno{
    margin-left: 3.2rem;
    width: 12rem;
    height: 2rem;
}
#main #stop{
    margin-left: 2.2rem;
    width: 12rem;
    height: 2rem;
    margin-bottom: 1rem;
}
#main #stat{
    margin-left: 1rem;
    width: 12rem;
    height: 2rem;
   
}
#main #time{
    margin-left: 1.2rem;
    width: 12.2rem;
    height: 2rem;
   
}
.topnav input[type=text] {
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
  }
.topnav h5{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color:var(--pure);
    margin-right: 3rem;
}
  /* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
  @media screen and (max-width: 600px) {
    .topnav a, .topnav input[type=text] {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .topnav input[type=text] {
      border: 1px solid #ccc;
    }
  }
.footer {
    background-color: white;
    text-align: left;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 20px;
    color :var(--dark); 
  }
section{
    padding:6rem 0;
}
section.about .about-me-img{
    height:450px;
}

section.about h1{
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
}

section.about h1 span{
    color:var(--primary);
}

section.about h3{
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

section.about p{
    font-family: 'Lato', sans-serif;
    color: var(--ternary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer .social{
    display: flex;
    justify-content:flex-end;
}
.footer .social a{
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 0.6rem;
    transition: all .3s ease;

}
.footer .social a:hover{
    background: var(--primary);
}
.footer .social a img{
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}