body{
    margin: 0;
}
.navbar{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: black;
    padding: 40px;
    a{
        font-size: 35px;
        color: white;
        text-decoration: none;
        transition: 0.5s;
    }
    a:hover{
        color: rgb(156, 0, 247);
    }
}
.content{
    margin: auto;
    width: 70%;
    h1{
        font-size: 45px;
        text-align: center;
    }
    h2{
        margin-top: 60px;
        font-size: 33px;
        text-decoration:underline ;
        text-align: center;
    }

    ul li{
        font-size: 20px;
        padding: 10px;
    }
}

p{
    font-size: 25px;
}

.footer{
    display: flex;
    justify-content: space-evenly;
    background-color: black;
    padding: 40px;
    gap: 20px;
}

.footer a{
        font-size: 22px;
        color: white;
        text-decoration: none;
        transition: 0.5s;
    }

.footer a:hover{
    color: rgb(179, 66, 245);
}