@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    min-height: 100vh;
    background: #01132d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.header{
    display: flex;
    justify-content:
    space-between;
    align-items: center;
    padding: 20px 20px 20px 70px;
}
.logo{
    font-size: 45px;
    font-weight: 700;
}
nav ul{
    display: flex;
}
nav ul li{
    list-style: none;
    margin-inline: 30px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
}
nav ul li:hover a{
    color:rgba(253, 189,49);
    transition: 0.3s;
}
.container{
    padding: 0 100px;
    margin-top: 50px;
}
.text h1{
    font-size: 70px;
    line-height: 150px;
    letter-spacing: 2px;
}
.text p{
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
}
.btn{
    margin-top: 10px;
}
.btn button{
    padding: 10px 40px;
    font-size: 16px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-right: 30px;
    cursor: pointer;
}
.btn button:nth-child(2){
    background: rgba(253, 189, 49);
    background-color: rgba(253, 189, 49);
    color: #01132d;
}

.linkcolor a{
    color: #fff;
    text-decoration: none;
}