*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
    overflow-x: hidden;
}

body{
    background: linear-gradient(rgb(93, 21, 226), rgb(189, 154, 255));
    background-repeat: no-repeat;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
    justify-content: space-between;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 900px;
    border-radius: 50px;
    background-color: white;
    box-shadow: 0px 4px 10px rgb(0, 0, 0, 0.5);
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

img{
    width: 70px;
}

.bar{
    display: none;
}

.menu{
    width: 500px;
}

ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style-type: none;
}

ul a{
    text-decoration: none;
    color: rgb(93, 21, 226);
    font-weight: bold;
}

ul a:hover{
    font-size: 18px;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
}

main .container{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: white;
}

.heading{
    text-shadow: 0px 4px 10px rgb(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-align: center;
    margin: 30px;
}

.para{
    text-shadow: 0px 4px 10px rgb(0, 0, 0, 0.5);
    text-align: center;
    width: 70%;
    letter-spacing: 1px;
    margin: 20px;
}

button{
    border: 0px;
    padding: 10px 30px;
    font-size: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgb(0, 0, 0, 0.5);
    margin: 20px;
    cursor: pointer;
}

button:hover{
    background: rgb(223, 223, 223);
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer p{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
}

.social-links{
    padding-bottom: 10px;
    padding-top: 10px
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 15px;
}

.social-links a:hover{
    text-decoration: underline 1px;
    text-underline-offset: 5px;
}

@media (max-width: 850px) {
    nav{
        justify-content: space-between;
        margin-left: 20px;
        margin-right: 20px;
    }
    .logo{
        margin-left: 50px;
    }
    .menu{
        display: none;
        justify-content: end;
        align-items: center;
        position: absolute;
        transform: translateY(157px);
        width: 100%;
        padding-right: 70px;
    }
    .bar{
        display: flex;
        font-size: 25px;
        color: rgb(93, 21, 226);
        cursor: pointer;
        margin-right: 50px;
    }
    ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60%;
        background-color: white;
    }
    li{
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
        padding: 10px;
        padding-right: 30px;
        border-bottom: 1px solid rgb(35, 1, 97);
        cursor: pointer;
    }
    li:hover{
        background-color: rgb(230, 230, 230);
    }
}

