*{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    background-color: rgb(0, 0, 27);
    color: white;
    font-family: 'Poppins', sans-serif;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background-color: #0a0a2b;
    padding: 10px 20px;
}

nav ul{
    display: flex;
    justify-content: center;
}

nav ul li{
    list-style: none;
    margin: 20px;
}

nav ul li a{
    text-decoration: none;
    color: white;
}

nav ul li a:hover{
    color: rgb(146, 74, 214);
}

.left{
    font-size: 1.5rem;
}

div .links{
    display: flex;
    margin: 30px 0px 0px 12px;
}

div .links div a{
    margin: 0px 20px 0px 0px;
    padding: 5px;
}

.firstSection{
    display: flex;
    justify-content: space-around;
    margin: 35px 0px;
    align-items: center;
}

.firstSection > div{
    width: 45%;
}

.leftSection{
    font-size: 2.8rem;
    margin: 0px 0px 0px 70px;
}

.rightSection img{
    width: 60%;
    margin: 0px 0px 10px 200px;
}

.purple{
    color: rgb(146, 74, 214);
}

#element{
    color: rgb(146, 74, 214);
}

.secondSection{
    max-width: 85vw;
    margin: auto;
}

footer{
    background-color: #222223;
    height: 100px;
}
.footer{
    display: flex;
    padding: 23px 0px;
    justify-content: space-around;
}

footer ul{
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
}

footer ul li{
    margin: 5px 20px 10px 20px;;
}

.footer > div{
    width: 23px 0px;
}

footer .footer-rights{
    text-align: center;
}


@media only screen and (max-width: 600px) {
    nav {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    nav ul li {
        margin: 5px;
    }

     div .links {
    display: inline-flex;
  }

    .left {
        font-size: 1.5rem;
        margin-top: 10px;
      }

    .leftSection {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .rightSection img {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .firstSection {
        flex-direction: column;
        margin: 20px 0;
    }

    .firstSection > div {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .footer {
        flex-direction: column;
        padding: 10px 0;
    }
}
