@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body{
    height: 100vh;
    width: 99%;
    background-image: url("../img/background.png");
}
/*header styles*/
body>header{
    position:fixed;
    background: white;
    height: 50px;
    width: 98vw;
    top: 0;
    z-index: 10;

}
body>header>h1{
    position: relative;
    display: inline;
    font-size: 20px;
    font-weight: bolder;
    font-family: 'Roboto Mono', monospace;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
body>header>h1>span{
    color: #FF2400;
}


body>header>nav{
    position: absolute;
    display: inline-block;
    right: 100px;
    top: 0;
}

body>header>nav>menu{
    position: relative;

}

body>header>nav>menu>li{
    position: relative;
    display: inline-block;
    padding-right: 10px;
    text-decoration: red;
    font-size: 15px;
    font-weight: bolder;
    font-family: 'Roboto Mono', monospace;
}

body>section:nth-child(2){
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 8%;
    height: 100%;
    width: 98vw;
    top: 100px;
    bottom: 0;
    font-family: 'Roboto', sans-serif;
}
body>section>div{
    width: 40%;
    height: fit-content;
}

body>section>div>h2{
    position: relative;
    display: inline-block;
}

body>section>div>ul{
    left: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

body>section>div>ul>li{
    gap: 100px;
    font-size: 26px;
    color: rgba(60,60,60,0.8);
}
body>section>div:nth-child(1){
    position: relative;
    left: 50px;
    border-right: 2px solid rgba(60,60,60,0.8);
    padding-right: 80px;

}
body>section>div:nth-child(2){
    position: relative;
    right: 0;



}

/*background img*/


body>div:nth-child(3){
    position: absolute;
    width: 60%;
    height: 40%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

body>div:nth-child(3)>img{
    position: relative;
    width: 100%;
    height: fit-content;
    left: 0;
    opacity: 25%;
}



/*footer*/
footer{
    position: relative;
    color: #fff;
    height: 30px;
    padding: 10px;
    bottom: -300px;
    background-color: red;
    font-family: 'Karla Medium',sans-serif;
    font-size: 20px;
}

footer>p{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    top: 0;
    bottom: 0;
    margin: auto;
}

footer>p>span:nth-child(3){
    position: relative;
    width: fit-content;
    padding-left: 100px;
}

