*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#050B18;

    color:white;

}

/* Header */

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 8%;

}

.logo{

  .logo { width: 100px; height: auto; }

}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

/* Hero */

.hero{

    height:45vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:
    radial-gradient(circle at top,#103A7A 0%,#050B18 65%);

}

.hero-text{

    max-width:900px;

}

.hero h1{

    font-size:60px;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#d6d6d6;

    line-height:1.7;

    margin-bottom:45px;

}

.button{

    display:inline-block;

    padding:18px 42px;

    background:#1EA5FF;

    color:white;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.button:hover{

    background:#36B5FF;

    transform:translateY(-4px);

}
