*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.header{
    width: 100vw;
    height: 60vh;
    background-image:
    linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)),
    url(../figures/solo1.jpg);
    position: relative;
    background-size: cover;
    background-position: center;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}
.nav-links{
    flex: 1;
    text-align: center;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: blue;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
    padding-top: 60px;
}
.text-box h2{
    font-weight: 500;
    font-size: 20px;
    margin: 5px 0 0;
}
.text-box h3{
    margin: 40px 0 20px;
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 16px;
    color: white;
}

nav .fa{
    display: none;
}

.home {
    width: 80%;
    margin: auto;
    text-align: left;
    padding-top: 80px;
}
.h1{
    font-size: 50px;
    font-weight: 600;
}
h2{
    font-size: 20px;
    font-weight: bolder;
    line-height: 30px;
    padding: 10px;
    margin-top: 5px;
}
h3{
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    padding: 10px;
}
h4{
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    padding: 10px;
}
h5{
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 10px 10px;
    margin-left: 20px;
}
p{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    padding: 10px;
}


view{
    cursor: pointer;
    outline: 0;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 18px;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
view:hover{
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

#footer {
	text-align: center;
    font-size: 10px;
    padding-top: 5px;
	padding-bottom: 15px;
}

ol li {
    counter-reset: li; /* Initiate a counter */
    list-style: decimal; /* Remove default numbering */
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
  }

@media(max-width: 700px){
    .text-box h1{
        font-size: 50px;
    }
    .text-box p{
        margin: 10px 0 40px;
        font-size: 14px;
        color: black;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: white;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: flex;
        justify-content: flex-end;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}