:root {
  --bg-color: #002945;
  --secondary-bd-color: #003b5d;
  --text-color: #ededed;
  --primary: #0093cd;
}
* {
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-repeat: no-repeat;

}
::-webkit-scrollbar{
  width: 1.2rem;
}

::-webkit-scrollbar-track{
  background: linear-gradient(to bottom right, #00253E,#001a2c) ;;
}

::-webkit-scrollbar-thumb{
  background: rgb(168, 168, 168);
  border-radius: 10px;
}
p{
    font-size: 2rem;
    color: rgb(237, 237, 237, 0.8);
    margin: 2rem 0 4rem;
}
.home h1 span{
  color:var(--primary)
}
html{
  font-size: 62%;
  overflow-x: hidden;
  background-image: no-repeat;
  background: no-repeat;
}
body{
  background: linear-gradient(to bottom right, #00253E,#001A2C) ;
  color: var(--text-color);
  
}
section{
    color: var(--text-color);
    min-height: 100vh;
    padding: 5rem 9% 2rem;
    margin: 0 auto;
}

.home{
    padding: 0 9%;
}

.header {
  width: 100%;
  position: fixed;
  padding: 2rem 9%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header.sticky{
  background: linear-gradient(to bottom right, #00253E,#001A2C);
}

.logo{
  font-size: 2.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.navbar a{
  font-size: 1.7rem;
  color: var(--text-color);
  font-weight: 500;
  margin-left: 3.5rem;
  transition: .3s;
}

.navbar a:hover,
.navbar a.active
{
  color: var(--primary);
}

#menu-icon{
    font-size: 3.5rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}
.home {
  text-align: center;
  
}
.home h1{
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10rem;
    text-align: center;
}
.white{
  color: var(--primary);
}
.home p{
  text-align: center;
}
.soon{
    margin-top: 15rem;
}
h2{
  padding-top: 4rem;
  font-size: 2.5rem;
}
h3{
  padding: 2rem;
  font-size: 1.8rem;
}
ul{
  text-align: left;
}
li{
  font-size: 2rem;
  color: #ededed;
}
.list{
  margin: 0 auto;
  width: fit-content;
  padding: 0;
}
@media screen and (max-width:520px){
  h2{
    padding-top: 2rem;
  }
  .home p{
    text-align: left;
  }
}