@import url('https://fonts.googleapis.com/css2?family=Nerko+One&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    
}


@keyframes showRight {
    from {width: 100%;}
    to {width: 0%;}
  }

body {
    background: #081b29;
    color: #ededed;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}

.logo {
    background-image: linear-gradient(to bottom right, #f0a400, #ffbf36);
    color: transparent;
    background-clip: text;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 4s ease forwards;
    animation-delay: .4s;
}

.navbar a {
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s ease;
}

.navbar a:hover,
a.active {
    color: #f0a400;
}

.home {
    height: 100vh;
    display: flex;
    align-items: center;
}

.home-content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 1.9s ease forwards;
    animation-delay: .4s;
    z-index: 5;
}



.home-content h1{
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    justify-content: center;
}

.home-content h3{
    font-size: 32px;
    font-weight: 700;
    color: #f0a400;
    justify-content: center;
}

.home-content p {
    font-size: 16px;
    margin: 20px 0 40px;
}

.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background-color: #f0a400;
    border: 2px solid #f0a400;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    margin-top: 10%;
}


.btn-box a:hover {
    color: #f0a400;
}

.btn-box a:nth-child(2) {
    background: transparent;
    color: #f0a400;
}
.btn-box a:nth-child(2):hover {
    color: #081b29;
}
.btn-box a:nth-child(2)::before {
    background: #f0a400;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #081b29;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before {
   height: 100%;
}

.center-box {
    background-color: #092233;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-left: auto;
    margin-right: auto;
}


